nvfuser-cu121-torch25 0.2.25.dev20250201__cp310-cp310-manylinux_2_28_x86_64.whl
Sign up to get free protection for your applications and to get access to all the features.
- nvfuser/_C.cpython-310-x86_64-linux-gnu.so +0 -0
- nvfuser/__init__.py +618 -0
- nvfuser/__init__.pyi +4 -0
- nvfuser/contrib/__init__.py +9 -0
- nvfuser/contrib/nn/__init__.py +13 -0
- nvfuser/contrib/nn/normalization.py +725 -0
- nvfuser/include/nvfuser/alias_analysis.h +116 -0
- nvfuser/include/nvfuser/bfs.h +929 -0
- nvfuser/include/nvfuser/codegen.h +26 -0
- nvfuser/include/nvfuser/compute_at.h +28 -0
- nvfuser/include/nvfuser/compute_at_map.h +394 -0
- nvfuser/include/nvfuser/contiguity.h +351 -0
- nvfuser/include/nvfuser/cuda_utils.h +50 -0
- nvfuser/include/nvfuser/debug.h +50 -0
- nvfuser/include/nvfuser/device_lower/analysis/bank_conflict.h +53 -0
- nvfuser/include/nvfuser/device_lower/analysis/circular_buffer.h +109 -0
- nvfuser/include/nvfuser/device_lower/analysis/device_version.h +65 -0
- nvfuser/include/nvfuser/device_lower/analysis/divisible_split.h +28 -0
- nvfuser/include/nvfuser/device_lower/analysis/fused_reduction.h +36 -0
- nvfuser/include/nvfuser/device_lower/analysis/index_compute.h +322 -0
- nvfuser/include/nvfuser/device_lower/analysis/predicate_elimination.h +71 -0
- nvfuser/include/nvfuser/device_lower/analysis/sync_information.h +47 -0
- nvfuser/include/nvfuser/device_lower/analysis/tensor_memory.h +65 -0
- nvfuser/include/nvfuser/device_lower/analysis/thread_predicate.h +158 -0
- nvfuser/include/nvfuser/device_lower/analysis/tma.h +93 -0
- nvfuser/include/nvfuser/device_lower/analysis/trivial_broadcast.h +75 -0
- nvfuser/include/nvfuser/device_lower/id_model_options.h +135 -0
- nvfuser/include/nvfuser/device_lower/lower2device.h +391 -0
- nvfuser/include/nvfuser/device_lower/pass/alias_memory.h +37 -0
- nvfuser/include/nvfuser/device_lower/pass/allocation.h +32 -0
- nvfuser/include/nvfuser/device_lower/pass/circular_buffer.h +191 -0
- nvfuser/include/nvfuser/device_lower/pass/expr_sort.h +17 -0
- nvfuser/include/nvfuser/device_lower/pass/fusion_simplifier.h +21 -0
- nvfuser/include/nvfuser/device_lower/pass/grid_serialization.h +26 -0
- nvfuser/include/nvfuser/device_lower/pass/index.h +200 -0
- nvfuser/include/nvfuser/device_lower/pass/inline_ptx.h +16 -0
- nvfuser/include/nvfuser/device_lower/pass/insert_syncs.h +39 -0
- nvfuser/include/nvfuser/device_lower/pass/instrument.h +24 -0
- nvfuser/include/nvfuser/device_lower/pass/loop_rotation.h +150 -0
- nvfuser/include/nvfuser/device_lower/pass/loops.h +68 -0
- nvfuser/include/nvfuser/device_lower/pass/magic_zero.h +86 -0
- nvfuser/include/nvfuser/device_lower/pass/misaligned_vectorization.h +118 -0
- nvfuser/include/nvfuser/device_lower/pass/predicate.h +23 -0
- nvfuser/include/nvfuser/device_lower/pass/replace_size.h +24 -0
- nvfuser/include/nvfuser/device_lower/pass/scalar_hoist.h +115 -0
- nvfuser/include/nvfuser/device_lower/pass/unroll.h +98 -0
- nvfuser/include/nvfuser/device_lower/pass/vectorize_welford.h +45 -0
- nvfuser/include/nvfuser/device_lower/pass/warp_reduce.h +23 -0
- nvfuser/include/nvfuser/device_lower/utils.h +382 -0
- nvfuser/include/nvfuser/device_lower/validation.h +74 -0
- nvfuser/include/nvfuser/disjoint_set.h +556 -0
- nvfuser/include/nvfuser/dispatch.h +334 -0
- nvfuser/include/nvfuser/driver_api.h +49 -0
- nvfuser/include/nvfuser/dynamic_transform.h +316 -0
- nvfuser/include/nvfuser/dynamic_type/C++20/type_traits +37 -0
- nvfuser/include/nvfuser/dynamic_type/dynamic_type.h +969 -0
- nvfuser/include/nvfuser/dynamic_type/error.h +24 -0
- nvfuser/include/nvfuser/dynamic_type/type_traits.h +703 -0
- nvfuser/include/nvfuser/evaluator_common.h +295 -0
- nvfuser/include/nvfuser/exceptions.h +283 -0
- nvfuser/include/nvfuser/expr_evaluator.h +125 -0
- nvfuser/include/nvfuser/expr_simplifier.h +218 -0
- nvfuser/include/nvfuser/flatbuffers/allocator.h +68 -0
- nvfuser/include/nvfuser/flatbuffers/array.h +253 -0
- nvfuser/include/nvfuser/flatbuffers/base.h +486 -0
- nvfuser/include/nvfuser/flatbuffers/buffer.h +154 -0
- nvfuser/include/nvfuser/flatbuffers/buffer_ref.h +53 -0
- nvfuser/include/nvfuser/flatbuffers/code_generator.h +80 -0
- nvfuser/include/nvfuser/flatbuffers/code_generators.h +234 -0
- nvfuser/include/nvfuser/flatbuffers/default_allocator.h +64 -0
- nvfuser/include/nvfuser/flatbuffers/detached_buffer.h +114 -0
- nvfuser/include/nvfuser/flatbuffers/flatbuffer_builder.h +1225 -0
- nvfuser/include/nvfuser/flatbuffers/flatbuffers.h +272 -0
- nvfuser/include/nvfuser/flatbuffers/flatc.h +130 -0
- nvfuser/include/nvfuser/flatbuffers/flex_flat_util.h +36 -0
- nvfuser/include/nvfuser/flatbuffers/flexbuffers.h +1889 -0
- nvfuser/include/nvfuser/flatbuffers/grpc.h +300 -0
- nvfuser/include/nvfuser/flatbuffers/hash.h +127 -0
- nvfuser/include/nvfuser/flatbuffers/idl.h +1359 -0
- nvfuser/include/nvfuser/flatbuffers/minireflect.h +420 -0
- nvfuser/include/nvfuser/flatbuffers/reflection.h +522 -0
- nvfuser/include/nvfuser/flatbuffers/reflection_generated.h +1471 -0
- nvfuser/include/nvfuser/flatbuffers/registry.h +128 -0
- nvfuser/include/nvfuser/flatbuffers/stl_emulation.h +513 -0
- nvfuser/include/nvfuser/flatbuffers/string.h +64 -0
- nvfuser/include/nvfuser/flatbuffers/struct.h +53 -0
- nvfuser/include/nvfuser/flatbuffers/table.h +168 -0
- nvfuser/include/nvfuser/flatbuffers/util.h +731 -0
- nvfuser/include/nvfuser/flatbuffers/vector.h +393 -0
- nvfuser/include/nvfuser/flatbuffers/vector_downward.h +273 -0
- nvfuser/include/nvfuser/flatbuffers/verifier.h +317 -0
- nvfuser/include/nvfuser/fusion.h +511 -0
- nvfuser/include/nvfuser/fusion_guard.h +37 -0
- nvfuser/include/nvfuser/fusion_profiler.h +311 -0
- nvfuser/include/nvfuser/fusion_segmenter.h +751 -0
- nvfuser/include/nvfuser/global_allocator.h +27 -0
- nvfuser/include/nvfuser/grouped_reduction.h +47 -0
- nvfuser/include/nvfuser/host_ir/container.h +60 -0
- nvfuser/include/nvfuser/host_ir/executor.h +152 -0
- nvfuser/include/nvfuser/host_ir/host_ir.h +320 -0
- nvfuser/include/nvfuser/host_ir/lower.h +35 -0
- nvfuser/include/nvfuser/id_model/circular_buffer_indexing.h +56 -0
- nvfuser/include/nvfuser/id_model/contiguity.h +166 -0
- nvfuser/include/nvfuser/id_model/id_model.h +359 -0
- nvfuser/include/nvfuser/id_model/id_model_index_compute.h +81 -0
- nvfuser/include/nvfuser/id_model/indexing.h +208 -0
- nvfuser/include/nvfuser/id_model/indexing_traversal.h +72 -0
- nvfuser/include/nvfuser/id_model/indexing_utils.h +62 -0
- nvfuser/include/nvfuser/id_model/loop_promotion.h +180 -0
- nvfuser/include/nvfuser/id_model/predicate_indexing.h +104 -0
- nvfuser/include/nvfuser/id_model/schedule.h +54 -0
- nvfuser/include/nvfuser/id_model/to_string.h +87 -0
- nvfuser/include/nvfuser/id_model/transform_replay.h +58 -0
- nvfuser/include/nvfuser/id_model/utils.h +176 -0
- nvfuser/include/nvfuser/id_model/validation_utils.h +55 -0
- nvfuser/include/nvfuser/index_compute.h +651 -0
- nvfuser/include/nvfuser/instrumentation.h +107 -0
- nvfuser/include/nvfuser/ir/all_nodes.h +14 -0
- nvfuser/include/nvfuser/ir/base_nodes.h +687 -0
- nvfuser/include/nvfuser/ir/builder.h +215 -0
- nvfuser/include/nvfuser/ir/builder_passkey.h +29 -0
- nvfuser/include/nvfuser/ir/cloner.h +185 -0
- nvfuser/include/nvfuser/ir/container.h +226 -0
- nvfuser/include/nvfuser/ir/graphviz.h +119 -0
- nvfuser/include/nvfuser/ir/interface_nodes.h +957 -0
- nvfuser/include/nvfuser/ir/internal_base_nodes.h +744 -0
- nvfuser/include/nvfuser/ir/internal_nodes.h +2792 -0
- nvfuser/include/nvfuser/ir/iostream.h +98 -0
- nvfuser/include/nvfuser/ir/printer.h +57 -0
- nvfuser/include/nvfuser/ir/utils.h +801 -0
- nvfuser/include/nvfuser/iter_visitor.h +661 -0
- nvfuser/include/nvfuser/kernel.h +299 -0
- nvfuser/include/nvfuser/kernel_db/kernel_db.h +109 -0
- nvfuser/include/nvfuser/kernel_db/utils.h +37 -0
- nvfuser/include/nvfuser/kernel_ir.h +1457 -0
- nvfuser/include/nvfuser/kernel_ir_dispatch.h +147 -0
- nvfuser/include/nvfuser/linked_hash_map.h +97 -0
- nvfuser/include/nvfuser/logical_domain_map.h +577 -0
- nvfuser/include/nvfuser/macros.h +23 -0
- nvfuser/include/nvfuser/mma_type.h +257 -0
- nvfuser/include/nvfuser/multidevice/c10d_mock.h +175 -0
- nvfuser/include/nvfuser/multidevice/communication.h +232 -0
- nvfuser/include/nvfuser/multidevice/communicator.h +179 -0
- nvfuser/include/nvfuser/multidevice/device_mesh.h +95 -0
- nvfuser/include/nvfuser/multidevice/executor.h +107 -0
- nvfuser/include/nvfuser/multidevice/multidevice.h +18 -0
- nvfuser/include/nvfuser/multidevice/utils.h +187 -0
- nvfuser/include/nvfuser/non_divisible_split.h +86 -0
- nvfuser/include/nvfuser/opaque_type.h +129 -0
- nvfuser/include/nvfuser/ops/alias.h +192 -0
- nvfuser/include/nvfuser/ops/all_ops.h +13 -0
- nvfuser/include/nvfuser/ops/arith.h +712 -0
- nvfuser/include/nvfuser/ops/composite.h +130 -0
- nvfuser/include/nvfuser/ops/indexing.h +55 -0
- nvfuser/include/nvfuser/ops/normalization.h +263 -0
- nvfuser/include/nvfuser/ops/utils.h +127 -0
- nvfuser/include/nvfuser/options.h +313 -0
- nvfuser/include/nvfuser/parallel_dimension_map.h +95 -0
- nvfuser/include/nvfuser/parallel_type_bitmap.h +365 -0
- nvfuser/include/nvfuser/polymorphic_value.h +432 -0
- nvfuser/include/nvfuser/predicate_compute.h +213 -0
- nvfuser/include/nvfuser/python_frontend/distributed_tensor.h +50 -0
- nvfuser/include/nvfuser/python_frontend/fusion_cache.h +298 -0
- nvfuser/include/nvfuser/python_frontend/fusion_definition.h +372 -0
- nvfuser/include/nvfuser/python_frontend/fusion_record.h +3124 -0
- nvfuser/include/nvfuser/python_frontend/fusion_state.h +143 -0
- nvfuser/include/nvfuser/python_frontend/python_bindings.h +27 -0
- nvfuser/include/nvfuser/python_frontend/segmentation.h +246 -0
- nvfuser/include/nvfuser/python_frontend/translation.h +20 -0
- nvfuser/include/nvfuser/python_frontend/translation_utils.h +308 -0
- nvfuser/include/nvfuser/scheduler/all_schedulers.h +17 -0
- nvfuser/include/nvfuser/scheduler/ampere_multi_matmul.h +206 -0
- nvfuser/include/nvfuser/scheduler/cache_policy_refiner.h +19 -0
- nvfuser/include/nvfuser/scheduler/compile_time_info.h +322 -0
- nvfuser/include/nvfuser/scheduler/debug_utils.h +68 -0
- nvfuser/include/nvfuser/scheduler/expr_eval_sched.h +45 -0
- nvfuser/include/nvfuser/scheduler/heuristic.h +113 -0
- nvfuser/include/nvfuser/scheduler/hopper_multi_matmul.h +204 -0
- nvfuser/include/nvfuser/scheduler/mark_aliases.h +19 -0
- nvfuser/include/nvfuser/scheduler/matmul.h +40 -0
- nvfuser/include/nvfuser/scheduler/matmul_heuristic.h +293 -0
- nvfuser/include/nvfuser/scheduler/matmul_heuristic_plugin.h +65 -0
- nvfuser/include/nvfuser/scheduler/matmul_heuristic_plugin_api.h +99 -0
- nvfuser/include/nvfuser/scheduler/matmul_utils.h +54 -0
- nvfuser/include/nvfuser/scheduler/mma_utils.h +500 -0
- nvfuser/include/nvfuser/scheduler/multi_matmul.h +74 -0
- nvfuser/include/nvfuser/scheduler/no_op.h +48 -0
- nvfuser/include/nvfuser/scheduler/normalization_inner.h +49 -0
- nvfuser/include/nvfuser/scheduler/normalization_inner_outer.h +51 -0
- nvfuser/include/nvfuser/scheduler/normalization_outer.h +48 -0
- nvfuser/include/nvfuser/scheduler/normalization_utils.h +379 -0
- nvfuser/include/nvfuser/scheduler/pointwise.h +183 -0
- nvfuser/include/nvfuser/scheduler/pointwise_heuristic.h +118 -0
- nvfuser/include/nvfuser/scheduler/pointwise_utils.h +24 -0
- nvfuser/include/nvfuser/scheduler/reduction.h +43 -0
- nvfuser/include/nvfuser/scheduler/reduction_heuristic.h +339 -0
- nvfuser/include/nvfuser/scheduler/reduction_utils.h +159 -0
- nvfuser/include/nvfuser/scheduler/registry.h +97 -0
- nvfuser/include/nvfuser/scheduler/registry_utils.h +111 -0
- nvfuser/include/nvfuser/scheduler/resize.h +41 -0
- nvfuser/include/nvfuser/scheduler/resize_heuristic.h +67 -0
- nvfuser/include/nvfuser/scheduler/runtime_info.h +166 -0
- nvfuser/include/nvfuser/scheduler/scheduler_types.h +80 -0
- nvfuser/include/nvfuser/scheduler/transpose.h +114 -0
- nvfuser/include/nvfuser/scheduler/transpose_heuristic.h +164 -0
- nvfuser/include/nvfuser/scheduler/utils.h +771 -0
- nvfuser/include/nvfuser/scheduler/vectorize_helper.h +349 -0
- nvfuser/include/nvfuser/serde/factory.h +55 -0
- nvfuser/include/nvfuser/serde/fusion_cache_generated.h +4319 -0
- nvfuser/include/nvfuser/serde/fusion_record.h +124 -0
- nvfuser/include/nvfuser/serde/polymorphic_value.h +52 -0
- nvfuser/include/nvfuser/serde/utils.h +34 -0
- nvfuser/include/nvfuser/struct.inl +127 -0
- nvfuser/include/nvfuser/swizzle.h +54 -0
- nvfuser/include/nvfuser/sys_utils.h +40 -0
- nvfuser/include/nvfuser/tensor_metadata.h +118 -0
- nvfuser/include/nvfuser/tma.h +124 -0
- nvfuser/include/nvfuser/transform_iter.h +522 -0
- nvfuser/include/nvfuser/transform_replay.h +297 -0
- nvfuser/include/nvfuser/transform_rfactor.h +33 -0
- nvfuser/include/nvfuser/transform_view.h +136 -0
- nvfuser/include/nvfuser/type.h +1125 -0
- nvfuser/include/nvfuser/type_promotion.h +61 -0
- nvfuser/include/nvfuser/utils.h +619 -0
- nvfuser/include/nvfuser/val_graph.h +446 -0
- nvfuser/include/nvfuser/val_graph_visitor.h +259 -0
- nvfuser/include/nvfuser/validator_utils.h +92 -0
- nvfuser/include/nvfuser/vectorization_info.h +31 -0
- nvfuser/include/nvfuser/visibility.h +21 -0
- nvfuser/lib/libnvfuser_codegen.so +0 -0
- nvfuser/nvfuser_version.py +69 -0
- nvfuser/pytorch_utils.py +184 -0
- nvfuser/share/cmake/nvfuser/NvfuserConfig-release.cmake +20 -0
- nvfuser/share/cmake/nvfuser/NvfuserConfig.cmake +106 -0
- nvfuser/utils.py +18 -0
- nvfuser/version.py +1 -0
- nvfuser_cu121_torch25-0.2.25.dev20250201.dist-info/LICENSE +976 -0
- nvfuser_cu121_torch25-0.2.25.dev20250201.dist-info/METADATA +20 -0
- nvfuser_cu121_torch25-0.2.25.dev20250201.dist-info/RECORD +242 -0
- nvfuser_cu121_torch25-0.2.25.dev20250201.dist-info/WHEEL +5 -0
- nvfuser_cu121_torch25-0.2.25.dev20250201.dist-info/top_level.txt +1 -0
- nvfuser_cu121_torch25.libs/libnvToolsExt-847d78f2.so.1.0.0 +0 -0
@@ -0,0 +1,976 @@
|
|
1
|
+
Copyright (c) 2023- NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
2
|
+
|
3
|
+
From PyTorch:
|
4
|
+
|
5
|
+
Copyright (c) 2016- Facebook, Inc (Adam Paszke)
|
6
|
+
Copyright (c) 2014- Facebook, Inc (Soumith Chintala)
|
7
|
+
Copyright (c) 2011-2014 Idiap Research Institute (Ronan Collobert)
|
8
|
+
Copyright (c) 2012-2014 Deepmind Technologies (Koray Kavukcuoglu)
|
9
|
+
Copyright (c) 2011-2012 NEC Laboratories America (Koray Kavukcuoglu)
|
10
|
+
Copyright (c) 2011-2013 NYU (Clement Farabet)
|
11
|
+
Copyright (c) 2006-2010 NEC Laboratories America (Ronan Collobert, Leon Bottou, Iain Melvin, Jason Weston)
|
12
|
+
Copyright (c) 2006 Idiap Research Institute (Samy Bengio)
|
13
|
+
Copyright (c) 2001-2004 Idiap Research Institute (Ronan Collobert, Samy Bengio, Johnny Mariethoz)
|
14
|
+
|
15
|
+
From Caffe2:
|
16
|
+
|
17
|
+
Copyright (c) 2016-present, Facebook Inc. All rights reserved.
|
18
|
+
|
19
|
+
All contributions by Facebook:
|
20
|
+
Copyright (c) 2016 Facebook Inc.
|
21
|
+
|
22
|
+
All contributions by Google:
|
23
|
+
Copyright (c) 2015 Google Inc.
|
24
|
+
All rights reserved.
|
25
|
+
|
26
|
+
All contributions by Yangqing Jia:
|
27
|
+
Copyright (c) 2015 Yangqing Jia
|
28
|
+
All rights reserved.
|
29
|
+
|
30
|
+
All contributions by Kakao Brain:
|
31
|
+
Copyright 2019-2020 Kakao Brain
|
32
|
+
|
33
|
+
All contributions by Cruise LLC:
|
34
|
+
Copyright (c) 2022 Cruise LLC.
|
35
|
+
All rights reserved.
|
36
|
+
|
37
|
+
All contributions from Caffe:
|
38
|
+
Copyright(c) 2013, 2014, 2015, the respective contributors
|
39
|
+
All rights reserved.
|
40
|
+
|
41
|
+
All other contributions:
|
42
|
+
Copyright(c) 2015, 2016 the respective contributors
|
43
|
+
All rights reserved.
|
44
|
+
|
45
|
+
Caffe2 uses a copyright model similar to Caffe: each contributor holds
|
46
|
+
copyright over their contributions to Caffe2. The project versioning records
|
47
|
+
all such contribution and copyright details. If a contributor wants to further
|
48
|
+
mark their specific copyright on a particular contribution, they should
|
49
|
+
indicate their copyright solely in the commit message of the change when it is
|
50
|
+
committed.
|
51
|
+
|
52
|
+
All rights reserved.
|
53
|
+
|
54
|
+
Redistribution and use in source and binary forms, with or without
|
55
|
+
modification, are permitted provided that the following conditions are met:
|
56
|
+
|
57
|
+
1. Redistributions of source code must retain the above copyright
|
58
|
+
notice, this list of conditions and the following disclaimer.
|
59
|
+
|
60
|
+
2. Redistributions in binary form must reproduce the above copyright
|
61
|
+
notice, this list of conditions and the following disclaimer in the
|
62
|
+
documentation and/or other materials provided with the distribution.
|
63
|
+
|
64
|
+
3. Neither the names of Facebook, Deepmind Technologies, NYU, NEC Laboratories America
|
65
|
+
and IDIAP Research Institute nor the names of its contributors may be
|
66
|
+
used to endorse or promote products derived from this software without
|
67
|
+
specific prior written permission.
|
68
|
+
|
69
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
70
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
71
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
72
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
73
|
+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
74
|
+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
75
|
+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
76
|
+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
77
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
78
|
+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
79
|
+
POSSIBILITY OF SUCH DAMAGE.
|
80
|
+
|
81
|
+
|
82
|
+
NVIDIA/fuser depends on libraries with license listed below:
|
83
|
+
|
84
|
+
Project Name: flatbuffers
|
85
|
+
License Files:
|
86
|
+
third_party/flatbuffers/LICENSE
|
87
|
+
|
88
|
+
Apache License
|
89
|
+
Version 2.0, January 2004
|
90
|
+
http://www.apache.org/licenses/
|
91
|
+
|
92
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
93
|
+
|
94
|
+
1. Definitions.
|
95
|
+
|
96
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
97
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
98
|
+
|
99
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
100
|
+
the copyright owner that is granting the License.
|
101
|
+
|
102
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
103
|
+
other entities that control, are controlled by, or are under common
|
104
|
+
control with that entity. For the purposes of this definition,
|
105
|
+
"control" means (i) the power, direct or indirect, to cause the
|
106
|
+
direction or management of such entity, whether by contract or
|
107
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
108
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
109
|
+
|
110
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
111
|
+
exercising permissions granted by this License.
|
112
|
+
|
113
|
+
"Source" form shall mean the preferred form for making modifications,
|
114
|
+
including but not limited to software source code, documentation
|
115
|
+
source, and configuration files.
|
116
|
+
|
117
|
+
"Object" form shall mean any form resulting from mechanical
|
118
|
+
transformation or translation of a Source form, including but
|
119
|
+
not limited to compiled object code, generated documentation,
|
120
|
+
and conversions to other media types.
|
121
|
+
|
122
|
+
"Work" shall mean the work of authorship, whether in Source or
|
123
|
+
Object form, made available under the License, as indicated by a
|
124
|
+
copyright notice that is included in or attached to the work
|
125
|
+
(an example is provided in the Appendix below).
|
126
|
+
|
127
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
128
|
+
form, that is based on (or derived from) the Work and for which the
|
129
|
+
editorial revisions, annotations, elaborations, or other modifications
|
130
|
+
represent, as a whole, an original work of authorship. For the purposes
|
131
|
+
of this License, Derivative Works shall not include works that remain
|
132
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
133
|
+
the Work and Derivative Works thereof.
|
134
|
+
|
135
|
+
"Contribution" shall mean any work of authorship, including
|
136
|
+
the original version of the Work and any modifications or additions
|
137
|
+
to that Work or Derivative Works thereof, that is intentionally
|
138
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
139
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
140
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
141
|
+
means any form of electronic, verbal, or written communication sent
|
142
|
+
to the Licensor or its representatives, including but not limited to
|
143
|
+
communication on electronic mailing lists, source code control systems,
|
144
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
145
|
+
Licensor for the purpose of discussing and improving the Work, but
|
146
|
+
excluding communication that is conspicuously marked or otherwise
|
147
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
148
|
+
|
149
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
150
|
+
on behalf of whom a Contribution has been received by Licensor and
|
151
|
+
subsequently incorporated within the Work.
|
152
|
+
|
153
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
154
|
+
this License, each Contributor hereby grants to You a perpetual,
|
155
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
156
|
+
copyright license to reproduce, prepare Derivative Works of,
|
157
|
+
publicly display, publicly perform, sublicense, and distribute the
|
158
|
+
Work and such Derivative Works in Source or Object form.
|
159
|
+
|
160
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
161
|
+
this License, each Contributor hereby grants to You a perpetual,
|
162
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
163
|
+
(except as stated in this section) patent license to make, have made,
|
164
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
165
|
+
where such license applies only to those patent claims licensable
|
166
|
+
by such Contributor that are necessarily infringed by their
|
167
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
168
|
+
with the Work to which such Contribution(s) was submitted. If You
|
169
|
+
institute patent litigation against any entity (including a
|
170
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
171
|
+
or a Contribution incorporated within the Work constitutes direct
|
172
|
+
or contributory patent infringement, then any patent licenses
|
173
|
+
granted to You under this License for that Work shall terminate
|
174
|
+
as of the date such litigation is filed.
|
175
|
+
|
176
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
177
|
+
Work or Derivative Works thereof in any medium, with or without
|
178
|
+
modifications, and in Source or Object form, provided that You
|
179
|
+
meet the following conditions:
|
180
|
+
|
181
|
+
(a) You must give any other recipients of the Work or
|
182
|
+
Derivative Works a copy of this License; and
|
183
|
+
|
184
|
+
(b) You must cause any modified files to carry prominent notices
|
185
|
+
stating that You changed the files; and
|
186
|
+
|
187
|
+
(c) You must retain, in the Source form of any Derivative Works
|
188
|
+
that You distribute, all copyright, patent, trademark, and
|
189
|
+
attribution notices from the Source form of the Work,
|
190
|
+
excluding those notices that do not pertain to any part of
|
191
|
+
the Derivative Works; and
|
192
|
+
|
193
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
194
|
+
distribution, then any Derivative Works that You distribute must
|
195
|
+
include a readable copy of the attribution notices contained
|
196
|
+
within such NOTICE file, excluding those notices that do not
|
197
|
+
pertain to any part of the Derivative Works, in at least one
|
198
|
+
of the following places: within a NOTICE text file distributed
|
199
|
+
as part of the Derivative Works; within the Source form or
|
200
|
+
documentation, if provided along with the Derivative Works; or,
|
201
|
+
within a display generated by the Derivative Works, if and
|
202
|
+
wherever such third-party notices normally appear. The contents
|
203
|
+
of the NOTICE file are for informational purposes only and
|
204
|
+
do not modify the License. You may add Your own attribution
|
205
|
+
notices within Derivative Works that You distribute, alongside
|
206
|
+
or as an addendum to the NOTICE text from the Work, provided
|
207
|
+
that such additional attribution notices cannot be construed
|
208
|
+
as modifying the License.
|
209
|
+
|
210
|
+
You may add Your own copyright statement to Your modifications and
|
211
|
+
may provide additional or different license terms and conditions
|
212
|
+
for use, reproduction, or distribution of Your modifications, or
|
213
|
+
for any such Derivative Works as a whole, provided Your use,
|
214
|
+
reproduction, and distribution of the Work otherwise complies with
|
215
|
+
the conditions stated in this License.
|
216
|
+
|
217
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
218
|
+
any Contribution intentionally submitted for inclusion in the Work
|
219
|
+
by You to the Licensor shall be under the terms and conditions of
|
220
|
+
this License, without any additional terms or conditions.
|
221
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
222
|
+
the terms of any separate license agreement you may have executed
|
223
|
+
with Licensor regarding such Contributions.
|
224
|
+
|
225
|
+
6. Trademarks. This License does not grant permission to use the trade
|
226
|
+
names, trademarks, service marks, or product names of the Licensor,
|
227
|
+
except as required for reasonable and customary use in describing the
|
228
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
229
|
+
|
230
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
231
|
+
agreed to in writing, Licensor provides the Work (and each
|
232
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
233
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
234
|
+
implied, including, without limitation, any warranties or conditions
|
235
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
236
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
237
|
+
appropriateness of using or redistributing the Work and assume any
|
238
|
+
risks associated with Your exercise of permissions under this License.
|
239
|
+
|
240
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
241
|
+
whether in tort (including negligence), contract, or otherwise,
|
242
|
+
unless required by applicable law (such as deliberate and grossly
|
243
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
244
|
+
liable to You for damages, including any direct, indirect, special,
|
245
|
+
incidental, or consequential damages of any character arising as a
|
246
|
+
result of this License or out of the use or inability to use the
|
247
|
+
Work (including but not limited to damages for loss of goodwill,
|
248
|
+
work stoppage, computer failure or malfunction, or any and all
|
249
|
+
other commercial damages or losses), even if such Contributor
|
250
|
+
has been advised of the possibility of such damages.
|
251
|
+
|
252
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
253
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
254
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
255
|
+
or other liability obligations and/or rights consistent with this
|
256
|
+
License. However, in accepting such obligations, You may act only
|
257
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
258
|
+
of any other Contributor, and only if You agree to indemnify,
|
259
|
+
defend, and hold each Contributor harmless for any liability
|
260
|
+
incurred by, or claims asserted against, such Contributor by reason
|
261
|
+
of your accepting any such warranty or additional liability.
|
262
|
+
|
263
|
+
END OF TERMS AND CONDITIONS
|
264
|
+
|
265
|
+
APPENDIX: How to apply the Apache License to your work.
|
266
|
+
|
267
|
+
To apply the Apache License to your work, attach the following
|
268
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
269
|
+
replaced with your own identifying information. (Don't include
|
270
|
+
the brackets!) The text should be enclosed in the appropriate
|
271
|
+
comment syntax for the file format. We also recommend that a
|
272
|
+
file or class name and description of purpose be included on the
|
273
|
+
same "printed page" as the copyright notice for easier
|
274
|
+
identification within third-party archives.
|
275
|
+
|
276
|
+
Copyright [yyyy] [name of copyright owner]
|
277
|
+
|
278
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
279
|
+
you may not use this file except in compliance with the License.
|
280
|
+
You may obtain a copy of the License at
|
281
|
+
|
282
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
283
|
+
|
284
|
+
Unless required by applicable law or agreed to in writing, software
|
285
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
286
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
287
|
+
See the License for the specific language governing permissions and
|
288
|
+
limitations under the License.
|
289
|
+
|
290
|
+
|
291
|
+
Project Name: swift
|
292
|
+
License Files:
|
293
|
+
third_party/flatbuffers/swift/LICENSE
|
294
|
+
|
295
|
+
Apache License
|
296
|
+
Version 2.0, January 2004
|
297
|
+
http://www.apache.org/licenses/
|
298
|
+
|
299
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
300
|
+
|
301
|
+
1. Definitions.
|
302
|
+
|
303
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
304
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
305
|
+
|
306
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
307
|
+
the copyright owner that is granting the License.
|
308
|
+
|
309
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
310
|
+
other entities that control, are controlled by, or are under common
|
311
|
+
control with that entity. For the purposes of this definition,
|
312
|
+
"control" means (i) the power, direct or indirect, to cause the
|
313
|
+
direction or management of such entity, whether by contract or
|
314
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
315
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
316
|
+
|
317
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
318
|
+
exercising permissions granted by this License.
|
319
|
+
|
320
|
+
"Source" form shall mean the preferred form for making modifications,
|
321
|
+
including but not limited to software source code, documentation
|
322
|
+
source, and configuration files.
|
323
|
+
|
324
|
+
"Object" form shall mean any form resulting from mechanical
|
325
|
+
transformation or translation of a Source form, including but
|
326
|
+
not limited to compiled object code, generated documentation,
|
327
|
+
and conversions to other media types.
|
328
|
+
|
329
|
+
"Work" shall mean the work of authorship, whether in Source or
|
330
|
+
Object form, made available under the License, as indicated by a
|
331
|
+
copyright notice that is included in or attached to the work
|
332
|
+
(an example is provided in the Appendix below).
|
333
|
+
|
334
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
335
|
+
form, that is based on (or derived from) the Work and for which the
|
336
|
+
editorial revisions, annotations, elaborations, or other modifications
|
337
|
+
represent, as a whole, an original work of authorship. For the purposes
|
338
|
+
of this License, Derivative Works shall not include works that remain
|
339
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
340
|
+
the Work and Derivative Works thereof.
|
341
|
+
|
342
|
+
"Contribution" shall mean any work of authorship, including
|
343
|
+
the original version of the Work and any modifications or additions
|
344
|
+
to that Work or Derivative Works thereof, that is intentionally
|
345
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
346
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
347
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
348
|
+
means any form of electronic, verbal, or written communication sent
|
349
|
+
to the Licensor or its representatives, including but not limited to
|
350
|
+
communication on electronic mailing lists, source code control systems,
|
351
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
352
|
+
Licensor for the purpose of discussing and improving the Work, but
|
353
|
+
excluding communication that is conspicuously marked or otherwise
|
354
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
355
|
+
|
356
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
357
|
+
on behalf of whom a Contribution has been received by Licensor and
|
358
|
+
subsequently incorporated within the Work.
|
359
|
+
|
360
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
361
|
+
this License, each Contributor hereby grants to You a perpetual,
|
362
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
363
|
+
copyright license to reproduce, prepare Derivative Works of,
|
364
|
+
publicly display, publicly perform, sublicense, and distribute the
|
365
|
+
Work and such Derivative Works in Source or Object form.
|
366
|
+
|
367
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
368
|
+
this License, each Contributor hereby grants to You a perpetual,
|
369
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
370
|
+
(except as stated in this section) patent license to make, have made,
|
371
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
372
|
+
where such license applies only to those patent claims licensable
|
373
|
+
by such Contributor that are necessarily infringed by their
|
374
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
375
|
+
with the Work to which such Contribution(s) was submitted. If You
|
376
|
+
institute patent litigation against any entity (including a
|
377
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
378
|
+
or a Contribution incorporated within the Work constitutes direct
|
379
|
+
or contributory patent infringement, then any patent licenses
|
380
|
+
granted to You under this License for that Work shall terminate
|
381
|
+
as of the date such litigation is filed.
|
382
|
+
|
383
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
384
|
+
Work or Derivative Works thereof in any medium, with or without
|
385
|
+
modifications, and in Source or Object form, provided that You
|
386
|
+
meet the following conditions:
|
387
|
+
|
388
|
+
(a) You must give any other recipients of the Work or
|
389
|
+
Derivative Works a copy of this License; and
|
390
|
+
|
391
|
+
(b) You must cause any modified files to carry prominent notices
|
392
|
+
stating that You changed the files; and
|
393
|
+
|
394
|
+
(c) You must retain, in the Source form of any Derivative Works
|
395
|
+
that You distribute, all copyright, patent, trademark, and
|
396
|
+
attribution notices from the Source form of the Work,
|
397
|
+
excluding those notices that do not pertain to any part of
|
398
|
+
the Derivative Works; and
|
399
|
+
|
400
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
401
|
+
distribution, then any Derivative Works that You distribute must
|
402
|
+
include a readable copy of the attribution notices contained
|
403
|
+
within such NOTICE file, excluding those notices that do not
|
404
|
+
pertain to any part of the Derivative Works, in at least one
|
405
|
+
of the following places: within a NOTICE text file distributed
|
406
|
+
as part of the Derivative Works; within the Source form or
|
407
|
+
documentation, if provided along with the Derivative Works; or,
|
408
|
+
within a display generated by the Derivative Works, if and
|
409
|
+
wherever such third-party notices normally appear. The contents
|
410
|
+
of the NOTICE file are for informational purposes only and
|
411
|
+
do not modify the License. You may add Your own attribution
|
412
|
+
notices within Derivative Works that You distribute, alongside
|
413
|
+
or as an addendum to the NOTICE text from the Work, provided
|
414
|
+
that such additional attribution notices cannot be construed
|
415
|
+
as modifying the License.
|
416
|
+
|
417
|
+
You may add Your own copyright statement to Your modifications and
|
418
|
+
may provide additional or different license terms and conditions
|
419
|
+
for use, reproduction, or distribution of Your modifications, or
|
420
|
+
for any such Derivative Works as a whole, provided Your use,
|
421
|
+
reproduction, and distribution of the Work otherwise complies with
|
422
|
+
the conditions stated in this License.
|
423
|
+
|
424
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
425
|
+
any Contribution intentionally submitted for inclusion in the Work
|
426
|
+
by You to the Licensor shall be under the terms and conditions of
|
427
|
+
this License, without any additional terms or conditions.
|
428
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
429
|
+
the terms of any separate license agreement you may have executed
|
430
|
+
with Licensor regarding such Contributions.
|
431
|
+
|
432
|
+
6. Trademarks. This License does not grant permission to use the trade
|
433
|
+
names, trademarks, service marks, or product names of the Licensor,
|
434
|
+
except as required for reasonable and customary use in describing the
|
435
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
436
|
+
|
437
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
438
|
+
agreed to in writing, Licensor provides the Work (and each
|
439
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
440
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
441
|
+
implied, including, without limitation, any warranties or conditions
|
442
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
443
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
444
|
+
appropriateness of using or redistributing the Work and assume any
|
445
|
+
risks associated with Your exercise of permissions under this License.
|
446
|
+
|
447
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
448
|
+
whether in tort (including negligence), contract, or otherwise,
|
449
|
+
unless required by applicable law (such as deliberate and grossly
|
450
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
451
|
+
liable to You for damages, including any direct, indirect, special,
|
452
|
+
incidental, or consequential damages of any character arising as a
|
453
|
+
result of this License or out of the use or inability to use the
|
454
|
+
Work (including but not limited to damages for loss of goodwill,
|
455
|
+
work stoppage, computer failure or malfunction, or any and all
|
456
|
+
other commercial damages or losses), even if such Contributor
|
457
|
+
has been advised of the possibility of such damages.
|
458
|
+
|
459
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
460
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
461
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
462
|
+
or other liability obligations and/or rights consistent with this
|
463
|
+
License. However, in accepting such obligations, You may act only
|
464
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
465
|
+
of any other Contributor, and only if You agree to indemnify,
|
466
|
+
defend, and hold each Contributor harmless for any liability
|
467
|
+
incurred by, or claims asserted against, such Contributor by reason
|
468
|
+
of your accepting any such warranty or additional liability.
|
469
|
+
|
470
|
+
END OF TERMS AND CONDITIONS
|
471
|
+
|
472
|
+
APPENDIX: How to apply the Apache License to your work.
|
473
|
+
|
474
|
+
To apply the Apache License to your work, attach the following
|
475
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
476
|
+
replaced with your own identifying information. (Don't include
|
477
|
+
the brackets!) The text should be enclosed in the appropriate
|
478
|
+
comment syntax for the file format. We also recommend that a
|
479
|
+
file or class name and description of purpose be included on the
|
480
|
+
same "printed page" as the copyright notice for easier
|
481
|
+
identification within third-party archives.
|
482
|
+
|
483
|
+
Copyright [yyyy] [name of copyright owner]
|
484
|
+
|
485
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
486
|
+
you may not use this file except in compliance with the License.
|
487
|
+
You may obtain a copy of the License at
|
488
|
+
|
489
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
490
|
+
|
491
|
+
Unless required by applicable law or agreed to in writing, software
|
492
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
493
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
494
|
+
See the License for the specific language governing permissions and
|
495
|
+
limitations under the License.
|
496
|
+
|
497
|
+
|
498
|
+
Project Name: dart
|
499
|
+
License Files:
|
500
|
+
third_party/flatbuffers/dart/LICENSE
|
501
|
+
Apache License
|
502
|
+
Version 2.0, January 2004
|
503
|
+
http://www.apache.org/licenses/
|
504
|
+
|
505
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
506
|
+
|
507
|
+
1. Definitions.
|
508
|
+
|
509
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
510
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
511
|
+
|
512
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
513
|
+
the copyright owner that is granting the License.
|
514
|
+
|
515
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
516
|
+
other entities that control, are controlled by, or are under common
|
517
|
+
control with that entity. For the purposes of this definition,
|
518
|
+
"control" means (i) the power, direct or indirect, to cause the
|
519
|
+
direction or management of such entity, whether by contract or
|
520
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
521
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
522
|
+
|
523
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
524
|
+
exercising permissions granted by this License.
|
525
|
+
|
526
|
+
"Source" form shall mean the preferred form for making modifications,
|
527
|
+
including but not limited to software source code, documentation
|
528
|
+
source, and configuration files.
|
529
|
+
|
530
|
+
"Object" form shall mean any form resulting from mechanical
|
531
|
+
transformation or translation of a Source form, including but
|
532
|
+
not limited to compiled object code, generated documentation,
|
533
|
+
and conversions to other media types.
|
534
|
+
|
535
|
+
"Work" shall mean the work of authorship, whether in Source or
|
536
|
+
Object form, made available under the License, as indicated by a
|
537
|
+
copyright notice that is included in or attached to the work
|
538
|
+
(an example is provided in the Appendix below).
|
539
|
+
|
540
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
541
|
+
form, that is based on (or derived from) the Work and for which the
|
542
|
+
editorial revisions, annotations, elaborations, or other modifications
|
543
|
+
represent, as a whole, an original work of authorship. For the purposes
|
544
|
+
of this License, Derivative Works shall not include works that remain
|
545
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
546
|
+
the Work and Derivative Works thereof.
|
547
|
+
|
548
|
+
"Contribution" shall mean any work of authorship, including
|
549
|
+
the original version of the Work and any modifications or additions
|
550
|
+
to that Work or Derivative Works thereof, that is intentionally
|
551
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
552
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
553
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
554
|
+
means any form of electronic, verbal, or written communication sent
|
555
|
+
to the Licensor or its representatives, including but not limited to
|
556
|
+
communication on electronic mailing lists, source code control systems,
|
557
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
558
|
+
Licensor for the purpose of discussing and improving the Work, but
|
559
|
+
excluding communication that is conspicuously marked or otherwise
|
560
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
561
|
+
|
562
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
563
|
+
on behalf of whom a Contribution has been received by Licensor and
|
564
|
+
subsequently incorporated within the Work.
|
565
|
+
|
566
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
567
|
+
this License, each Contributor hereby grants to You a perpetual,
|
568
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
569
|
+
copyright license to reproduce, prepare Derivative Works of,
|
570
|
+
publicly display, publicly perform, sublicense, and distribute the
|
571
|
+
Work and such Derivative Works in Source or Object form.
|
572
|
+
|
573
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
574
|
+
this License, each Contributor hereby grants to You a perpetual,
|
575
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
576
|
+
(except as stated in this section) patent license to make, have made,
|
577
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
578
|
+
where such license applies only to those patent claims licensable
|
579
|
+
by such Contributor that are necessarily infringed by their
|
580
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
581
|
+
with the Work to which such Contribution(s) was submitted. If You
|
582
|
+
institute patent litigation against any entity (including a
|
583
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
584
|
+
or a Contribution incorporated within the Work constitutes direct
|
585
|
+
or contributory patent infringement, then any patent licenses
|
586
|
+
granted to You under this License for that Work shall terminate
|
587
|
+
as of the date such litigation is filed.
|
588
|
+
|
589
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
590
|
+
Work or Derivative Works thereof in any medium, with or without
|
591
|
+
modifications, and in Source or Object form, provided that You
|
592
|
+
meet the following conditions:
|
593
|
+
|
594
|
+
(a) You must give any other recipients of the Work or
|
595
|
+
Derivative Works a copy of this License; and
|
596
|
+
|
597
|
+
(b) You must cause any modified files to carry prominent notices
|
598
|
+
stating that You changed the files; and
|
599
|
+
|
600
|
+
(c) You must retain, in the Source form of any Derivative Works
|
601
|
+
that You distribute, all copyright, patent, trademark, and
|
602
|
+
attribution notices from the Source form of the Work,
|
603
|
+
excluding those notices that do not pertain to any part of
|
604
|
+
the Derivative Works; and
|
605
|
+
|
606
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
607
|
+
distribution, then any Derivative Works that You distribute must
|
608
|
+
include a readable copy of the attribution notices contained
|
609
|
+
within such NOTICE file, excluding those notices that do not
|
610
|
+
pertain to any part of the Derivative Works, in at least one
|
611
|
+
of the following places: within a NOTICE text file distributed
|
612
|
+
as part of the Derivative Works; within the Source form or
|
613
|
+
documentation, if provided along with the Derivative Works; or,
|
614
|
+
within a display generated by the Derivative Works, if and
|
615
|
+
wherever such third-party notices normally appear. The contents
|
616
|
+
of the NOTICE file are for informational purposes only and
|
617
|
+
do not modify the License. You may add Your own attribution
|
618
|
+
notices within Derivative Works that You distribute, alongside
|
619
|
+
or as an addendum to the NOTICE text from the Work, provided
|
620
|
+
that such additional attribution notices cannot be construed
|
621
|
+
as modifying the License.
|
622
|
+
|
623
|
+
You may add Your own copyright statement to Your modifications and
|
624
|
+
may provide additional or different license terms and conditions
|
625
|
+
for use, reproduction, or distribution of Your modifications, or
|
626
|
+
for any such Derivative Works as a whole, provided Your use,
|
627
|
+
reproduction, and distribution of the Work otherwise complies with
|
628
|
+
the conditions stated in this License.
|
629
|
+
|
630
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
631
|
+
any Contribution intentionally submitted for inclusion in the Work
|
632
|
+
by You to the Licensor shall be under the terms and conditions of
|
633
|
+
this License, without any additional terms or conditions.
|
634
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
635
|
+
the terms of any separate license agreement you may have executed
|
636
|
+
with Licensor regarding such Contributions.
|
637
|
+
|
638
|
+
6. Trademarks. This License does not grant permission to use the trade
|
639
|
+
names, trademarks, service marks, or product names of the Licensor,
|
640
|
+
except as required for reasonable and customary use in describing the
|
641
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
642
|
+
|
643
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
644
|
+
agreed to in writing, Licensor provides the Work (and each
|
645
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
646
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
647
|
+
implied, including, without limitation, any warranties or conditions
|
648
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
649
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
650
|
+
appropriateness of using or redistributing the Work and assume any
|
651
|
+
risks associated with Your exercise of permissions under this License.
|
652
|
+
|
653
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
654
|
+
whether in tort (including negligence), contract, or otherwise,
|
655
|
+
unless required by applicable law (such as deliberate and grossly
|
656
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
657
|
+
liable to You for damages, including any direct, indirect, special,
|
658
|
+
incidental, or consequential damages of any character arising as a
|
659
|
+
result of this License or out of the use or inability to use the
|
660
|
+
Work (including but not limited to damages for loss of goodwill,
|
661
|
+
work stoppage, computer failure or malfunction, or any and all
|
662
|
+
other commercial damages or losses), even if such Contributor
|
663
|
+
has been advised of the possibility of such damages.
|
664
|
+
|
665
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
666
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
667
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
668
|
+
or other liability obligations and/or rights consistent with this
|
669
|
+
License. However, in accepting such obligations, You may act only
|
670
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
671
|
+
of any other Contributor, and only if You agree to indemnify,
|
672
|
+
defend, and hold each Contributor harmless for any liability
|
673
|
+
incurred by, or claims asserted against, such Contributor by reason
|
674
|
+
of your accepting any such warranty or additional liability.
|
675
|
+
|
676
|
+
END OF TERMS AND CONDITIONS
|
677
|
+
|
678
|
+
APPENDIX: How to apply the Apache License to your work.
|
679
|
+
|
680
|
+
To apply the Apache License to your work, attach the following
|
681
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
682
|
+
replaced with your own identifying information. (Don't include
|
683
|
+
the brackets!) The text should be enclosed in the appropriate
|
684
|
+
comment syntax for the file format. We also recommend that a
|
685
|
+
file or class name and description of purpose be included on the
|
686
|
+
same "printed page" as the copyright notice for easier
|
687
|
+
identification within third-party archives.
|
688
|
+
|
689
|
+
Copyright 2014 Google Inc.
|
690
|
+
|
691
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
692
|
+
you may not use this file except in compliance with the License.
|
693
|
+
You may obtain a copy of the License at
|
694
|
+
|
695
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
696
|
+
|
697
|
+
Unless required by applicable law or agreed to in writing, software
|
698
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
699
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
700
|
+
See the License for the specific language governing permissions and
|
701
|
+
limitations under the License.
|
702
|
+
|
703
|
+
|
704
|
+
Project Name: googletest
|
705
|
+
License Files:
|
706
|
+
third_party/googletest/LICENSE
|
707
|
+
Copyright 2008, Google Inc.
|
708
|
+
All rights reserved.
|
709
|
+
|
710
|
+
Redistribution and use in source and binary forms, with or without
|
711
|
+
modification, are permitted provided that the following conditions are
|
712
|
+
met:
|
713
|
+
|
714
|
+
* Redistributions of source code must retain the above copyright
|
715
|
+
notice, this list of conditions and the following disclaimer.
|
716
|
+
* Redistributions in binary form must reproduce the above
|
717
|
+
copyright notice, this list of conditions and the following disclaimer
|
718
|
+
in the documentation and/or other materials provided with the
|
719
|
+
distribution.
|
720
|
+
* Neither the name of Google Inc. nor the names of its
|
721
|
+
contributors may be used to endorse or promote products derived from
|
722
|
+
this software without specific prior written permission.
|
723
|
+
|
724
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
725
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
726
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
727
|
+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
728
|
+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
729
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
730
|
+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
731
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
732
|
+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
733
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
734
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
735
|
+
|
736
|
+
|
737
|
+
Project Name: benchmark
|
738
|
+
License Files:
|
739
|
+
third_party/benchmark/LICENSE
|
740
|
+
|
741
|
+
Apache License
|
742
|
+
Version 2.0, January 2004
|
743
|
+
http://www.apache.org/licenses/
|
744
|
+
|
745
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
746
|
+
|
747
|
+
1. Definitions.
|
748
|
+
|
749
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
750
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
751
|
+
|
752
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
753
|
+
the copyright owner that is granting the License.
|
754
|
+
|
755
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
756
|
+
other entities that control, are controlled by, or are under common
|
757
|
+
control with that entity. For the purposes of this definition,
|
758
|
+
"control" means (i) the power, direct or indirect, to cause the
|
759
|
+
direction or management of such entity, whether by contract or
|
760
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
761
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
762
|
+
|
763
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
764
|
+
exercising permissions granted by this License.
|
765
|
+
|
766
|
+
"Source" form shall mean the preferred form for making modifications,
|
767
|
+
including but not limited to software source code, documentation
|
768
|
+
source, and configuration files.
|
769
|
+
|
770
|
+
"Object" form shall mean any form resulting from mechanical
|
771
|
+
transformation or translation of a Source form, including but
|
772
|
+
not limited to compiled object code, generated documentation,
|
773
|
+
and conversions to other media types.
|
774
|
+
|
775
|
+
"Work" shall mean the work of authorship, whether in Source or
|
776
|
+
Object form, made available under the License, as indicated by a
|
777
|
+
copyright notice that is included in or attached to the work
|
778
|
+
(an example is provided in the Appendix below).
|
779
|
+
|
780
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
781
|
+
form, that is based on (or derived from) the Work and for which the
|
782
|
+
editorial revisions, annotations, elaborations, or other modifications
|
783
|
+
represent, as a whole, an original work of authorship. For the purposes
|
784
|
+
of this License, Derivative Works shall not include works that remain
|
785
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
786
|
+
the Work and Derivative Works thereof.
|
787
|
+
|
788
|
+
"Contribution" shall mean any work of authorship, including
|
789
|
+
the original version of the Work and any modifications or additions
|
790
|
+
to that Work or Derivative Works thereof, that is intentionally
|
791
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
792
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
793
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
794
|
+
means any form of electronic, verbal, or written communication sent
|
795
|
+
to the Licensor or its representatives, including but not limited to
|
796
|
+
communication on electronic mailing lists, source code control systems,
|
797
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
798
|
+
Licensor for the purpose of discussing and improving the Work, but
|
799
|
+
excluding communication that is conspicuously marked or otherwise
|
800
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
801
|
+
|
802
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
803
|
+
on behalf of whom a Contribution has been received by Licensor and
|
804
|
+
subsequently incorporated within the Work.
|
805
|
+
|
806
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
807
|
+
this License, each Contributor hereby grants to You a perpetual,
|
808
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
809
|
+
copyright license to reproduce, prepare Derivative Works of,
|
810
|
+
publicly display, publicly perform, sublicense, and distribute the
|
811
|
+
Work and such Derivative Works in Source or Object form.
|
812
|
+
|
813
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
814
|
+
this License, each Contributor hereby grants to You a perpetual,
|
815
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
816
|
+
(except as stated in this section) patent license to make, have made,
|
817
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
818
|
+
where such license applies only to those patent claims licensable
|
819
|
+
by such Contributor that are necessarily infringed by their
|
820
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
821
|
+
with the Work to which such Contribution(s) was submitted. If You
|
822
|
+
institute patent litigation against any entity (including a
|
823
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
824
|
+
or a Contribution incorporated within the Work constitutes direct
|
825
|
+
or contributory patent infringement, then any patent licenses
|
826
|
+
granted to You under this License for that Work shall terminate
|
827
|
+
as of the date such litigation is filed.
|
828
|
+
|
829
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
830
|
+
Work or Derivative Works thereof in any medium, with or without
|
831
|
+
modifications, and in Source or Object form, provided that You
|
832
|
+
meet the following conditions:
|
833
|
+
|
834
|
+
(a) You must give any other recipients of the Work or
|
835
|
+
Derivative Works a copy of this License; and
|
836
|
+
|
837
|
+
(b) You must cause any modified files to carry prominent notices
|
838
|
+
stating that You changed the files; and
|
839
|
+
|
840
|
+
(c) You must retain, in the Source form of any Derivative Works
|
841
|
+
that You distribute, all copyright, patent, trademark, and
|
842
|
+
attribution notices from the Source form of the Work,
|
843
|
+
excluding those notices that do not pertain to any part of
|
844
|
+
the Derivative Works; and
|
845
|
+
|
846
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
847
|
+
distribution, then any Derivative Works that You distribute must
|
848
|
+
include a readable copy of the attribution notices contained
|
849
|
+
within such NOTICE file, excluding those notices that do not
|
850
|
+
pertain to any part of the Derivative Works, in at least one
|
851
|
+
of the following places: within a NOTICE text file distributed
|
852
|
+
as part of the Derivative Works; within the Source form or
|
853
|
+
documentation, if provided along with the Derivative Works; or,
|
854
|
+
within a display generated by the Derivative Works, if and
|
855
|
+
wherever such third-party notices normally appear. The contents
|
856
|
+
of the NOTICE file are for informational purposes only and
|
857
|
+
do not modify the License. You may add Your own attribution
|
858
|
+
notices within Derivative Works that You distribute, alongside
|
859
|
+
or as an addendum to the NOTICE text from the Work, provided
|
860
|
+
that such additional attribution notices cannot be construed
|
861
|
+
as modifying the License.
|
862
|
+
|
863
|
+
You may add Your own copyright statement to Your modifications and
|
864
|
+
may provide additional or different license terms and conditions
|
865
|
+
for use, reproduction, or distribution of Your modifications, or
|
866
|
+
for any such Derivative Works as a whole, provided Your use,
|
867
|
+
reproduction, and distribution of the Work otherwise complies with
|
868
|
+
the conditions stated in this License.
|
869
|
+
|
870
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
871
|
+
any Contribution intentionally submitted for inclusion in the Work
|
872
|
+
by You to the Licensor shall be under the terms and conditions of
|
873
|
+
this License, without any additional terms or conditions.
|
874
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
875
|
+
the terms of any separate license agreement you may have executed
|
876
|
+
with Licensor regarding such Contributions.
|
877
|
+
|
878
|
+
6. Trademarks. This License does not grant permission to use the trade
|
879
|
+
names, trademarks, service marks, or product names of the Licensor,
|
880
|
+
except as required for reasonable and customary use in describing the
|
881
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
882
|
+
|
883
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
884
|
+
agreed to in writing, Licensor provides the Work (and each
|
885
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
886
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
887
|
+
implied, including, without limitation, any warranties or conditions
|
888
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
889
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
890
|
+
appropriateness of using or redistributing the Work and assume any
|
891
|
+
risks associated with Your exercise of permissions under this License.
|
892
|
+
|
893
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
894
|
+
whether in tort (including negligence), contract, or otherwise,
|
895
|
+
unless required by applicable law (such as deliberate and grossly
|
896
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
897
|
+
liable to You for damages, including any direct, indirect, special,
|
898
|
+
incidental, or consequential damages of any character arising as a
|
899
|
+
result of this License or out of the use or inability to use the
|
900
|
+
Work (including but not limited to damages for loss of goodwill,
|
901
|
+
work stoppage, computer failure or malfunction, or any and all
|
902
|
+
other commercial damages or losses), even if such Contributor
|
903
|
+
has been advised of the possibility of such damages.
|
904
|
+
|
905
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
906
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
907
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
908
|
+
or other liability obligations and/or rights consistent with this
|
909
|
+
License. However, in accepting such obligations, You may act only
|
910
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
911
|
+
of any other Contributor, and only if You agree to indemnify,
|
912
|
+
defend, and hold each Contributor harmless for any liability
|
913
|
+
incurred by, or claims asserted against, such Contributor by reason
|
914
|
+
of your accepting any such warranty or additional liability.
|
915
|
+
|
916
|
+
END OF TERMS AND CONDITIONS
|
917
|
+
|
918
|
+
APPENDIX: How to apply the Apache License to your work.
|
919
|
+
|
920
|
+
To apply the Apache License to your work, attach the following
|
921
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
922
|
+
replaced with your own identifying information. (Don't include
|
923
|
+
the brackets!) The text should be enclosed in the appropriate
|
924
|
+
comment syntax for the file format. We also recommend that a
|
925
|
+
file or class name and description of purpose be included on the
|
926
|
+
same "printed page" as the copyright notice for easier
|
927
|
+
identification within third-party archives.
|
928
|
+
|
929
|
+
Copyright [yyyy] [name of copyright owner]
|
930
|
+
|
931
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
932
|
+
you may not use this file except in compliance with the License.
|
933
|
+
You may obtain a copy of the License at
|
934
|
+
|
935
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
936
|
+
|
937
|
+
Unless required by applicable law or agreed to in writing, software
|
938
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
939
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
940
|
+
See the License for the specific language governing permissions and
|
941
|
+
limitations under the License.
|
942
|
+
|
943
|
+
|
944
|
+
Project Name: gloo
|
945
|
+
License Files:
|
946
|
+
third_party/gloo/LICENSE
|
947
|
+
BSD License
|
948
|
+
|
949
|
+
For Gloo software
|
950
|
+
|
951
|
+
Copyright (c) 2017-present, Facebook, Inc. All rights reserved.
|
952
|
+
|
953
|
+
Redistribution and use in source and binary forms, with or without modification,
|
954
|
+
are permitted provided that the following conditions are met:
|
955
|
+
|
956
|
+
* Redistributions of source code must retain the above copyright notice, this
|
957
|
+
list of conditions and the following disclaimer.
|
958
|
+
|
959
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
960
|
+
this list of conditions and the following disclaimer in the documentation
|
961
|
+
and/or other materials provided with the distribution.
|
962
|
+
|
963
|
+
* Neither the name Facebook nor the names of its contributors may be used to
|
964
|
+
endorse or promote products derived from this software without specific
|
965
|
+
prior written permission.
|
966
|
+
|
967
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
968
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
969
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
970
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
971
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
972
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
973
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
974
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
975
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
976
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|