-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNOTICE
More file actions
2634 lines (2120 loc) · 133 KB
/
Copy pathNOTICE
File metadata and controls
2634 lines (2120 loc) · 133 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Copyright 2025
[GCU-Exporter : 3.6]
Phase: PLANNING
Distribution: OPENSOURCE
Notices Report Content
* License Data
* License Text
* Origin Copyright Text
Components:
alecthomas-kingpin v2.2.6: https://github.com/alecthomas/kingpin : MIT License
alecthomas-template 20190718-snapshot-fb15b899: https://github.com/alecthomas/template : BSD 3-clause "New" or "Revised" License
alecthomas-units 20211218-snapshot-b94a6e3c: https://github.com/alecthomas/units : MIT License
beorn7-perks v1.0.1: https://github.com/beorn7/perks : MIT License
blang-semver v4.0.0: https://github.com/blang/semver : MIT License
btree v1.0.0: https://github.com/google/btree : Apache License 2.0
BurntSushi/toml v0.3.1: https://github.com/BurntSushi/toml : MIT License
census-instrumentation/opencensus-go v0.22.4: http://opencensus.io : Apache License 2.0
cespare/xxhash v2.1.2: https://github.com/cespare/xxhash : MIT License
chzyer/logex v1.1.10: https://github.com/chzyer/logex : MIT License
chzyer-readline 20180828-snapshot-2972be24: https://github.com/chzyer/readline : MIT License
chzyer/test 20190214-snapshot-a1ea475d: https://github.com/chzyer/test : MIT License
client9/misspell v0.3.4: https://pkg.go.dev/github.com/client9/misspell : (MIT License AND BSD 3-clause "New" or "Revised" License)
client_golang 1.14.0: https://github.com/prometheus/client_golang : Apache License 2.0
cncf/udpa 20210930-snapshot-04548b0d: https://github.com/cncf/udpa : Apache License 2.0
dmitri.shuralyov.com/gpu/mtl 20190408-snapshot-666a9877: https://dmitri.shuralyov.com/gpu/mtl : BSD 3-clause "New" or "Revised" License
dominikh/go-tools v0.0.1-2020.1.4: https://github.com/dominikh/go-tools : MIT License
envoyproxy/go-control-plane 20220324-snapshot-49ff2738: https://github.com/envoyproxy/go-control-plane : Apache License 2.0
envoyproxy/protoc-gen-validate v0.1.0: https://github.com/envoyproxy/protoc-gen-validate : Apache License 2.0
errcheck v1.5.0-alpha: https://github.com/kisielk/errcheck : MIT License
exp 20200223-snapshot-6cc2880d: http://code.google.com/p/go.exp : BSD 3-clause "New" or "Revised" License
github.com/antihax/optional 1.0.0: https://github.com/antihax/optional : MIT License
github.com/cncf/xds 20211011-snapshot-cb28da34 : Apache License 2.0
github.com/go-kit/log v0.2.0: https://github.com/go-kit/log : MIT License
github.com/konsorten/go-windows-terminal-sequences v1.0.3: https://github.com/konsorten/go-windows-terminal-sequences : MIT License
github.com/prometheus/exporter-toolkit v0.7.0: https://github.com/prometheus/exporter-toolkit : Apache License 2.0
github.com/rogpeppe/fastuuid v1.2.0: https://github.com/rogpeppe/fastuuid : BSD 3-clause "New" or "Revised" License
glfw 20190408-snapshot-e6da0acd: https://github.com/go-gl/glfw : BSD 3-clause "New" or "Revised" License
glfw 20200222-snapshot-6f7a984d: https://github.com/go-gl/glfw : BSD 3-clause "New" or "Revised" License
go-check-check 20190902-snapshot-41f04d3b: http://labix.org/gocheck : BSD 2-clause "Simplified" License
GoDoc Text v0.1.0: http://godoc.org/github.com/kr/text : MIT License
go-errgo-errgo v2.1.0: https://github.com/go-errgo/errgo : BSD 3-clause "New" or "Revised" License
gogo/protobuf v1.3.2: http://github.com/gogo/protobuf/ : BSD 3-clause "New" or "Revised" License
go-inf-inf v0.9.1: https://godoc.org/gopkg.in/inf.v0 : BSD 3-clause "New" or "Revised" License
go-kit-kit v0.9.0: http://gokit.io : MIT License
golang/appengine v1.6.6: http://google.golang.org/appengine : Apache License 2.0
golang-github-ghodss-yaml-dev 1.0.0: https://github.com/ghodss/yaml : MIT License
golang-github-spf13-pflag-dev v1.0.5: https://github.com/spf13/pflag : BSD 3-clause "New" or "Revised" License
golang/glog 20160125-snapshot-23def4e6: https://github.com/golang/glog : Apache License 2.0
golang-mock v1.4.4: https://github.com/golang/mock : Apache License 2.0
golang.org/x/crypto 20210615-snapshot-5ff15b29: https://godoc.org/golang.org/x/crypto : BSD 3-clause "New" or "Revised" License
golang.org/x/image 20190704-snapshot-cff245a6: https://pkg.go.dev/golang.org/x/image : BSD 3-clause "New" or "Revised" License
golang.org/x/lint 20200301-snapshot-738671d3: https://pkg.go.dev/golang.org/x/lint : BSD 3-clause "New" or "Revised" License
golang.org/x/mod v0.8.0 : BSD 3-clause "New" or "Revised" License
golang.org/x/net v0.8.0: https://godoc.org/golang.org/x/net : BSD 3-clause "New" or "Revised" License
golang.org/x/oauth2 20220223-snapshot-ee480838: https://pkg.go.dev/golang.org/x/oauth2 : BSD 3-clause "New" or "Revised" License
golang.org/x/sys 0.6.0: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang.org/x/term v0.6.0: https://go.googlesource.com/term : BSD 3-clause "New" or "Revised" License
golang.org/x/time 20191023-snapshot-555d28b2: https://pkg.go.dev/golang.org/x/time : BSD 3-clause "New" or "Revised" License
golang.org/x/tools v0.6.0: https://pkg.go.dev/golang.org/x/tools : BSD 3-clause "New" or "Revised" License
golang.org/x/xerrors 20200804-snapshot-5ec99f83 : BSD 3-clause "New" or "Revised" License
Golang Protobuf v1.28.1: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License
Golang Protobuf v1.5.3: https://github.com/golang/protobuf : BSD 3-clause "New" or "Revised" License
golang/sync 20220601-snapshot-0de741cf: https://pkg.go.dev/golang.org/x/sync : BSD 3-clause "New" or "Revised" License
golang/text v0.8.0: https://github.com/golang/text : BSD 3-clause "New" or "Revised" License
go-logfmt-logfmt v0.5.1: https://github.com/go-logfmt/logfmt : MIT License
go-logr/logr v1.2.3: https://github.com/go-logr/logr : Apache License 2.0
googleapis/gax-go v2.0.5: https://godoc.org/github.com/googleapis/gax-go : BSD 3-clause "New" or "Revised" License
googleapis/go-genproto 20220502-snapshot-c8bf987b: https://godoc.org/google.golang.org/genproto : Apache License 2.0
googleapis/google-api-go-client v0.30.0 : BSD 3-clause "New" or "Revised" License
google-cloud-go bigquery/v1.8.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go datastore/v1.1.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go pubsub/v1.3.1: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go storage/v1.10.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google-cloud-go v0.65.0: https://github.com/GoogleCloudPlatform/google-cloud-go : Apache License 2.0
google/go-cmp v0.5.9: https://github.com/google/go-cmp : BSD 3-clause "New" or "Revised" License
google-gofuzz v1.1.0: https://github.com/google/gofuzz : Apache License 2.0
google/pprof 20200707-snapshot-1a94d864: https://github.com/google/pprof : Apache License 2.0
google/renameio v0.1.0: https://github.com/google/renameio : Apache License 2.0
Googleuuid v.1.1.2: https://github.com/google/uuid : BSD 3-clause "New" or "Revised" License
go.opentelemetry.io/proto otlp/v0.7.0: https://github.com/open-telemetry/opentelemetry-proto-go : Apache License 2.0
go-spew v1.1.1: https://github.com/davecgh/go-spew : ISC License
go-stack-stack v1.8.0: http://github.com/go-stack/stack : MIT License
Go support for Mobile devices 20190704-snapshot-d2bd2a29 : BSD 3-clause "New" or "Revised" License
Go Testify 1.7.0: https://github.com/stretchr/testify : MIT License
groupcache 20200125-snapshot-8c9f03a8: https://github.com/golang/groupcache : Apache License 2.0
grpc-gateway v1.16.0: https://github.com/grpc-ecosystem/grpc-gateway : BSD 3-clause "New" or "Revised" License
grpc-go v1.51.0: https://github.com/grpc/grpc-go : Apache License 2.0
hashicorp-golang-lru v0.5.1: https://github.com/hashicorp/golang-lru : Mozilla Public License 2.0
ianlancetaylor/demangle 20181102-snapshot-5e5cf602: https://github.com/ianlancetaylor/demangle : BSD 3-clause "New" or "Revised" License
inconshreveable/mousetrap v1.0.1: https://github.com/inconshreveable/mousetrap : Apache License 2.0
jpillora-backoff 1.0.0: https://github.com/jpillora/backoff : MIT License
jsoniter-go v1.1.12: http://jsoniter.com/ : MIT License
jstemmer/go-junit-report v0.9.1: https://github.com/jstemmer/go-junit-report : MIT License
julienschmidt/httprouter v1.3.0: https://github.com/julienschmidt/httprouter : BSD 3-clause "New" or "Revised" License
k8s.io/klog v2.90.1: https://github.com/kubernetes/klog : Apache License 2.0
k8s.io/kubelet v0.27.3: https://github.com/kubernetes/kubelet : Apache License 2.0
k8s.io/utils 20230209-snapshot-a36077c3: https://github.com/kubernetes/utils : Apache License 2.0
kisielk-gotool v1.0.0: https://github.com/kisielk/gotool : (MIT License AND BSD 3-clause "New" or "Revised" License)
kr/pretty 0.2.1: https://github.com/kr/pretty : MIT License
kubernetes/api v0.27.3: https://github.com/kubernetes/api : Apache License 2.0
kubernetes/apimachinery v0.27.3: https://github.com/kubernetes/apimachinery : Apache License 2.0
kubernetes/component-base v0.27.3: https://github.com/kubernetes/component-base : Apache License 2.0
kubernetes-sigs/structured-merge-diff v4.2.3: https://github.com/kubernetes-sigs/structured-merge-diff : Apache License 2.0
logfmt 20140226-snapshot-b84e30ac: http://godoc.org/github.com/kr/logfmt : MIT License
martian v2.1.0: https://github.com/google/martian : Apache License 2.0
martian v3.0.0: https://github.com/google/martian : Apache License 2.0
matttproud-golang_protobuf_extensions v1.0.2: https://github.com/matttproud/golang_protobuf_extensions : Apache License 2.0
modern-go/concurrent 20180305-snapshot-bacd9c7e: https://github.com/modern-go/concurrent : Apache License 2.0
modern-go/reflect2 v1.0.2: https://github.com/modern-go/reflect2 : Apache License 2.0
mwitkow/go-conntrack 20190716-snapshot-2f068394: https://github.com/mwitkow/go-conntrack : Apache License 2.0
NVIDIA/gpu-monitoring-tools 1.0.0 : Apache License 2.0
OpenCensus 0.2.1: https://opencensus.io/ : Apache License 2.0
pkg/errors v0.9.1: https://github.com/pkg/errors : BSD 2-clause "Simplified" License
pmezard-go-difflib 1.0.0: https://github.com/pmezard/go-difflib : BSD 3-clause "New" or "Revised" License
prometheus-client_model v0.3.0: https://github.com/prometheus/client_model : Apache License 2.0
prometheus-common v0.37.0: https://github.com/prometheus/common : Apache License 2.0
Prometheus - node exporter v1.0.0-rc.1: https://prometheus.io/ : Apache License 2.0
prometheus-procfs 0.8.0: https://github.com/prometheus/procfs.git : (Apache License 2.0 AND BSD 3-clause "New" or "Revised" License)
pty v1.1.1: https://github.com/kr/pty : MIT License
rogpeppe/go-internal v1.3.0: http://github.com/rogpeppe/go-internal/ : BSD 3-clause "New" or "Revised" License
rsc/binaryregexp v0.2.0 : BSD 3-clause "New" or "Revised" License
rsc/quote v3.1.0 : BSD 3-clause "New" or "Revised" License
rsc/sampler v1.3.0 : BSD 3-clause "New" or "Revised" License
sigs.k8s.io/json 20221116-snapshot-bc3834ca: https://github.com/kubernetes-sigs/json : (Apache License 2.0 AND BSD 3-clause "New" or "Revised" License)
sigs.k8s.io/yaml v1.3.0: https://github.com/kubernetes-sigs/yaml : Apache License 2.0
Sirupsen/logrus v1.6.0: https://github.com/Sirupsen/logrus : MIT License
spf13-cobra v1.6.0: https://github.com/spf13/cobra : Apache License 2.0
stretchr/objx v0.1.1: https://github.com/stretchr/objx : MIT License
xgb 20160522-snapshot-27f12275: https://github.com/BurntSushi/xgb : BSD 3-clause "New" or "Revised" License
yaml for Go 20200512-snapshot-9f266ea9: https://github.com/go-yaml/yaml/tree/v2 : Apache License 2.0
yaml for Go v2.4.0: https://github.com/go-yaml/yaml/tree/v2 : Apache License 2.0
yuin/goldmark v1.2.1: https://github.com/yuin/goldmark : MIT License
Copyright Text:
alecthomas-kingpin v2.2.6 github:alecthomas/kingpin:v2.2.6: https://github.com/alecthomas/kingpin
Copyright (C) 2014 Alec Thomas
alecthomas-template 20190718-snapshot-fb15b899 github:alecthomas/template:fb15b899a75114aa79cc930e33c46b577cc664b1: https://github.com/alecthomas/template
Copyright (C) 2011-2012 The Go Authors. All rights reserved
alecthomas-units 20211218-snapshot-b94a6e3c github:alecthomas/units:b94a6e3cc13755c0a75fffecbb089eb346fc4289: https://github.com/alecthomas/units
No Copyrights found
beorn7-perks v1.0.1 github:beorn7/perks:v1.0.1: https://github.com/beorn7/perks
Copyright (C) 2013 Blake Mizerany
blang-semver v4.0.0 github:blang/semver:v4.0.0: https://github.com/blang/semver
Copyright (C) 2014 Benedikt Lang <github at benediktlang.de>
btree v1.0.0 unknown: https://github.com/google/btree
No Copyrights found
BurntSushi/toml v0.3.1 github:burntsushi/toml:v0.3.1: https://github.com/BurntSushi/toml
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Copyright (C) 2010 The Go Authors. All rights reserved
Copyright (C) 2013 TOML authors
census-instrumentation/opencensus-go v0.22.4 unknown: http://opencensus.io
No Copyrights found
cespare/xxhash v2.1.2 github:cespare/xxhash:v2.1.2: https://github.com/cespare/xxhash
Copyright (C) 2016 Caleb Spare
chzyer/logex v1.1.10 github:chzyer/logex:v1.1.10: https://github.com/chzyer/logex
No Copyrights found
chzyer-readline 20180828-snapshot-2972be24 github:chzyer/readline:2972be24d48e78746da79ba8e24e8b488c9880de: https://github.com/chzyer/readline
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Copyright (C) 2011, 2013 The Go Authors. All rights reserved
Copyright (C) 2015 Chzyer
chzyer/test 20190214-snapshot-a1ea475d github:chzyer/test:a1ea475d72b168a29f44221e0ad031a842642302: https://github.com/chzyer/test
Copyright (C) 2016 chzyer
client9/misspell v0.3.4 github:client9/misspell:v0.3.4: https://pkg.go.dev/github.com/client9/misspell
Copyright (C) 2009, 2011 The Go Authors. All rights reserved
Copyright (C) 2015-2017 Nick Galbreath
client_golang 1.14.0 github:prometheus/client_golang:v1.14.0: https://github.com/prometheus/client_golang
Copyright (C) 2010 The Go Authors
Copyright (C) 2012-2015 The Prometheus Authors This product includes software developed at SoundCloud Ltd. (http://soundcloud.com/).
Copyright (C) 2013 Matt T. Proud
Copyright (C) 2013-2015 Blake Mizerany, Bj
Copyright (C) 2013-2022 The Prometheus Authors
Copyright (C) 2015 Bj
cncf/udpa 20210930-snapshot-04548b0d github:cncf/udpa:04548b0d99d4e70b29310ebccc8e01f2deeed43a: https://github.com/cncf/udpa
No Copyrights found
dmitri.shuralyov.com/gpu/mtl 20190408-snapshot-666a9877 long_tail:dmitri.shuralyov.com/gpu/mtl#666a987793e9432fbb48592aa2f3bf3463685dfa: https://dmitri.shuralyov.com/gpu/mtl
No Copyrights found
dominikh/go-tools v0.0.1-2020.1.4 github:dominikh/go-tools:v0.0.1-2020.1.4: https://github.com/dominikh/go-tools
Copyright (C) 2009, 2013-2015, 2017, 2018-2019 The Go Authors. All rights reserved
Copyright (C) 2013 Kamil Kisiel <kamil@kamilkisiel.net>
Copyright (C) 2013 The Go Authors,
Copyright (C) 2013 TOML authors
Copyright (C) 2014 Dmitry Vyukov. All rights reserved
Copyright (C) 2016 Dominik Honnef
Copyright (C) 2016, 2018-2019 Dominik Honnef. All rights reserved
Copyright (C) 2017 Daniel Mart Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source
Copyright (C) 2018 Google Inc.
envoyproxy/go-control-plane 20220324-snapshot-49ff2738 github:envoyproxy/go-control-plane:49ff273808a140106ffbcc1af157d8da73cb4514: https://github.com/envoyproxy/go-control-plane
No Copyrights found
envoyproxy/protoc-gen-validate v0.1.0 github:envoyproxy/protoc-gen-validate:v0.1.0: https://github.com/envoyproxy/protoc-gen-validate
Copyright (C) 2009 Apple Inc. All rights reserved
Copyright (C) 2009-2018 The Go Authors. All rights reserved
Copyright (C) 2010 The Go Authors. https://github.com/golang/protobuf This package and the code it generates requires at least Go 1.6.
Copyright (C) 2013 tsuru authors. All rights reserved
Copyright (C) 2013, 2015-2018 The GoGo Authors. All rights reserved
Copyright (C) 2014-2016, 2018 Steve Francia <spf@spf13.com>.
Copyright (C) 2015 Ian Coleman
Copyright (C) 2015 Jerry Jacobs <jerry.jacobs@xor-gate.org>.
Copyright (C) 2015 The GoGo Authors. rights reserved. http://github.com/gogo/protobuf Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
Copyright (C) 2016present Bj
Copyright (C) 2018 Ma_124, <github.com/Ma124>
Copyright (C) 2019 Envoy Project Authors
Copyright (C) ©2015 The Go Authors
Copyright (C) ©2015 The Hugo Authors
Copyright (C) ©2015, 2018 Steve Francia <spf@spf13.com>
errcheck v1.5.0-alpha github:kisielk/errcheck:v1.5.0-alpha: https://github.com/kisielk/errcheck
Copyright (C) 2013 Kamil Kisiel
exp 20200223-snapshot-6cc2880d long_tail:go.googlesource.com/exp#6cc2880d07d65fc535a1fb4fbd58b397bc1c5312: http://code.google.com/p/go.exp
No Copyrights found
github.com/antihax/optional 1.0.0 github:antihax/optional:v1.0.0: https://github.com/antihax/optional
Copyright (C) 2016 Adam Hintz
github.com/cncf/xds 20211011-snapshot-cb28da34 github:cncf/xds:cb28da3451f158a947dfc45090fe92b07b243bc1
No Copyrights found
github.com/go-kit/log v0.2.0 github:go-kit/log:v0.2.0: https://github.com/go-kit/log
Copyright (C) 2011, 2013 The Go Authors. All rights reserved
Copyright (C) 2014 Simon Eskildsen
Copyright (C) 2021 Go kit
github.com/konsorten/go-windows-terminal-sequences v1.0.3 github:konsorten/go-windows-terminal-sequences:v1.0.3: https://github.com/konsorten/go-windows-terminal-sequences
Copyright (C) 2017-2018 marvin
github.com/prometheus/exporter-toolkit v0.7.0 github:prometheus/exporter-toolkit:v0.7.0: https://github.com/prometheus/exporter-toolkit
Copyright (C) 2015 Matthew Holt and The Caddy Authors
Copyright (C) 2019-2021 The Prometheus Authors
Copyright (C) 2020-2021 The Prometheus Authors This code is partly borrowed from Caddy:
github.com/rogpeppe/fastuuid v1.2.0 github:rogpeppe/fastuuid:v1.2.0: https://github.com/rogpeppe/fastuuid
Copyright (C) 2014 Roger Peppe
glfw 20190408-snapshot-e6da0acd github:go-gl/glfw:e6da0acd62b1b57ee2799d4d0a76a7d4514dc5bc: https://github.com/go-gl/glfw
No Copyrights found
glfw 20200222-snapshot-6f7a984d github:go-gl/glfw:6f7a984d4dc470c3f197229ad1991ae9e211bba2: https://github.com/go-gl/glfw
No Copyrights found
go-check-check 20190902-snapshot-41f04d3b github:go-check/check:41f04d3bba152ddec2103e299fed053415705330: http://labix.org/gocheck
Copyright (C) 2010-2013 Gustavo Niemeyer <gustavo@niemeyer.net> All rights reserved
Copyright (C) 2012 The Go Authors. All rights reserved
GoDoc Text v0.1.0 github:kr/text:v0.1.0: http://godoc.org/github.com/kr/text
Copyright (C) 2012 Keith Rarick
go-errgo-errgo v2.1.0 github:go-errgo/errgo:v2.1.0: https://github.com/go-errgo/errgo
Copyright (C) 2013 Roger Peppe All rights reserved
Copyright (C) 2014 Roger Peppe.
Copyright (C) 2014 Roger Peppe. See LICENCE file for details. The errors package provides a way to create and diagnose errors. It is compatible with the usual Go error idioms but adds a way to wrap errors
gogo/protobuf v1.3.2 unknown: http://github.com/gogo/protobuf/
No Copyrights found
go-inf-inf v0.9.1 github:go-inf/inf:v0.9.1: https://godoc.org/gopkg.in/inf.v0
Copyright (C) 2009 The Go Authors. All rights reserved
Copyright (C) 2012 P
go-kit-kit v0.9.0 unknown: http://gokit.io
No Copyrights found
golang/appengine v1.6.6 github:golang/appengine:v1.6.6: http://google.golang.org/appengine
Copyright (C) 2011 The Go Authors. All rights reserved
Copyright (C) 2011-2016, 2019 Google Inc. All rights reserved
Copyright (C) 2018 Google LLC. All rights reserved
golang-github-ghodss-yaml-dev 1.0.0 github:ghodss/yaml:v1.0.0: https://github.com/ghodss/yaml
Copyright (C) 2012-2013 The Go Authors. All rights reserved
Copyright (C) 2014 Sam Ghods
golang-github-spf13-pflag-dev v1.0.5 unknown: https://github.com/spf13/pflag
No Copyrights found
golang/glog 20160125-snapshot-23def4e6 github:golang/glog:23def4e6c14b4da8ac2ed8007337bc5eb5007998: https://github.com/golang/glog
Copyright (C) 2013, 2023 Google Inc. All Rights Reserved
golang-mock v1.4.4 github:golang/mock:v1.4.4: https://github.com/golang/mock
Copyright (C) 2010-2012 Google Inc.
Copyright (C) 2019 Google LLC
golang.org/x/crypto 20210615-snapshot-5ff15b29 long_tail:go.googlesource.com/crypto#5ff15b29337e062d850872081bcd9f4d784f4c25: https://godoc.org/golang.org/x/crypto
No Copyrights found
golang.org/x/image 20190704-snapshot-cff245a6 long_tail:go.googlesource.com/image#cff245a6509b8c4de022d0d5b9037c503c5989d6: https://pkg.go.dev/golang.org/x/image
No Copyrights found
golang.org/x/lint 20200301-snapshot-738671d3 long_tail:go.googlesource.com/lint#738671d3881b9731cc63024d5d88cf28db875626: https://pkg.go.dev/golang.org/x/lint
No Copyrights found
golang.org/x/mod v0.8.0 long_tail:go.googlesource.com/mod#v0.8.0
Copyright (C) 2009, 2018-2021 The Go Authors. All rights reserved
golang.org/x/net v0.8.0 long_tail:go.googlesource.com/net#v0.8.0: https://godoc.org/golang.org/x/net
Copyright (C) 2009 Apple Inc. All rights reserved
Copyright (C) 2009-2023 The Go Authors. All rights reserved
golang.org/x/oauth2 20220223-snapshot-ee480838 long_tail:go.googlesource.com/oauth2#ee480838109b20d468babcb00b7027c82f962065: https://pkg.go.dev/golang.org/x/oauth2
No Copyrights found
golang.org/x/sys 0.6.0 long_tail:go.googlesource.com/sys#v0.6.0: https://pkg.go.dev/golang.org/x/sync
Copyright (C) 2009-2023 The Go Authors. All rights reserved
Copyright (C) 2017 The Go Authors. All right reserved.
golang.org/x/term v0.6.0 long_tail:go.googlesource.com/term#v0.6.0: https://go.googlesource.com/term
Copyright (C) 2009, 2011, 2013, 2019, 2021 The Go Authors. All rights reserved
golang.org/x/time 20191023-snapshot-555d28b2 long_tail:go.googlesource.com/time#555d28b269f0569763d25dbe1a237ae74c6bcc82: https://pkg.go.dev/golang.org/x/time
No Copyrights found
golang.org/x/tools v0.6.0 long_tail:go.googlesource.com/tools#v0.6.0: https://pkg.go.dev/golang.org/x/tools
Copyright (C) 1994-1999 Lucent Technologies Inc. All rights reserved
Copyright (C) 1995-1997, 2005, 2006-2007 C H Forsyth (forsyth@terzarima.net)
Copyright (C) 1997-1999 Vita Nuova Limited
Copyright (C) 2000-2007 Lucent Technologies Inc. and others
Copyright (C) 2000-2007 Vita Nuova Holdings Limited (www.vitanuova.com)
Copyright (C) 2004, 2006 Bruce Ellis
Copyright (C) 2009-2023 The Go Authors. All rights reserved
Copyright (C) 2012-2016 The go-diff Authors. All rights reserved
Copyright (C) 2013 jQuery Foundation and other contributors Licensed MIT
Copyright (C) 2013 TOML authors
Copyright (C) 2015, 2019 Daniel Mart Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source
Copyright (C) 2016 Dominik Honnef
Copyright (C) v := "200602-01" a.Format(v) Allowed though variables. m := map[string]string{ "y": "2006-02-01",
golang.org/x/xerrors 20200804-snapshot-5ec99f83 long_tail:go.googlesource.com/xerrors#5ec99f83aff198f5fbd629d6c8d8eb38a04218ca
No Copyrights found
Golang Protobuf v1.28.1 long_tail:go.googlesource.com/protobuf#v1.28.1: https://github.com/golang/protobuf
Copyright (C) 2008 Google Inc. All rights reserved
Copyright (C) 2018-2021 The Go Authors. All rights reserved
Golang Protobuf v1.5.3 github:golang/protobuf:v1.5.3: https://github.com/golang/protobuf
Copyright (C) 2010-2011, 2014, 2015-2020 The Go Authors. All rights reserved
golang/sync 20220601-snapshot-0de741cf long_tail:go.googlesource.com/sync#0de741cfad7ff3874b219dfbc1b9195b58c7c490: https://pkg.go.dev/golang.org/x/sync
No Copyrights found
golang/text v0.8.0 long_tail:go.googlesource.com/text#v0.8.0: https://github.com/golang/text
Copyright (C) 2009, 2011-2019, 2021 The Go Authors. All rights reserved
go-logfmt-logfmt v0.5.1 github:go-logfmt/logfmt:v0.5.1: https://github.com/go-logfmt/logfmt
Copyright (C) 2010 The Go Authors. All rights reserved
Copyright (C) 2015 go-logfmt
go-logr/logr v1.2.3 github:go-logr/logr:v1.2.3: https://github.com/go-logr/logr
Copyright (C) 2019-2021 The logr Authors.
Copyright (C) 2020 The Kubernetes Authors.
googleapis/gax-go v2.0.5 github:googleapis/gax-go:v2.0.5: https://godoc.org/github.com/googleapis/gax-go
Copyright (C) 2016, 2018-2019 Google Inc. All rights reserved
Copyright (C) 2018 Google Inc.
Copyright (C) 2019 Google LLC
googleapis/go-genproto 20220502-snapshot-c8bf987b github:googleapis/go-genproto:c8bf987b8c21778beffccfd5a923546432c2d250: https://godoc.org/google.golang.org/genproto
No Copyrights found
googleapis/google-api-go-client v0.30.0 github:googleapis/google-api-go-client:v0.30.0
Copyright (C) 2011 Google Inc. All rights reserved
Copyright (C) 2011-2013, 2018, 2019-2020 Google LLC. All rights reserved
Copyright (C) 2013 Joshua Tacoma. All rights reserved
Copyright (C) 2014-2017 The Go Authors. All rights reserved
Copyright (C) 2015-2016, 2018, 2020, 2023 Google LLC
Copyright (C) 2015-2020 Google LLC.
google-cloud-go bigquery/v1.8.0 github:googleapis/google-cloud-go:bigquery/v1.8.0: https://github.com/GoogleCloudPlatform/google-cloud-go
Copyright (C) 1996-1998 John D. Polstra. All rights reserved
Copyright (C) 2001 David E. O
Copyright (C) 2014-2020 Google LLC
Copyright (C) 2017-2018 Google Inc. All rights reserved
Copyright (C) 2018 Google LLC. 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 c
google-cloud-go datastore/v1.1.0 github:googleapis/google-cloud-go:datastore/v1.1.0: https://github.com/GoogleCloudPlatform/google-cloud-go
Copyright (C) 1996-1998 John D. Polstra. All rights reserved
Copyright (C) 2001 David E. O
Copyright (C) 2014-2020 Google LLC
Copyright (C) 2017-2018 Google Inc. All Rights Reserved
Copyright (C) 2018 Google LLC. 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 c
google-cloud-go pubsub/v1.3.1 github:googleapis/google-cloud-go:pubsub/v1.3.1: https://github.com/GoogleCloudPlatform/google-cloud-go
Copyright (C) 1996-1998 John D. Polstra. All rights reserved
Copyright (C) 2001 David E. O
Copyright (C) 2014-2020 Google LLC
Copyright (C) 2017-2018 Google Inc. All rights reserved
Copyright (C) 2018 Google LLC. 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 c
google-cloud-go storage/v1.10.0 github:googleapis/google-cloud-go:storage/v1.10.0: https://github.com/GoogleCloudPlatform/google-cloud-go
Copyright (C) 1996-1998 John D. Polstra. All rights reserved
Copyright (C) 2001 David E. O
Copyright (C) 2014-2020 Google LLC
Copyright (C) 2018 Google Inc. All Rights Reserved
Copyright (C) 2018 Google LLC. 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 c
google-cloud-go v0.65.0 github:googleapis/google-cloud-go:v0.65.0: https://github.com/GoogleCloudPlatform/google-cloud-go
Copyright (C) 1996-1998 John D. Polstra. All rights reserved
Copyright (C) 2001 David E. O
Copyright (C) 2014-2020 Google LLC
Copyright (C) 2018 Google LLC. 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 c
Copyright (C) 2018, 2020 Google Inc. All Rights Reserved
google/go-cmp v0.5.9 github:google/go-cmp:v0.5.9: https://github.com/google/go-cmp
Copyright (C) 2017-2020 The Go Authors. All rights reserved
google-gofuzz v1.1.0 unknown: https://github.com/google/gofuzz
No Copyrights found
google/pprof 20200707-snapshot-1a94d864 github:google/pprof:1a94d8640e99342fa76ae6296aaa921d08ac451f: https://github.com/google/pprof
No Copyrights found
google/renameio v0.1.0 github:google/renameio:v0.1.0: https://github.com/google/renameio
Copyright (C) 2018 Google Inc.
Googleuuid v.1.1.2 github:google/uuid:v1.1.2: https://github.com/google/uuid
Copyright (C) 2009, 2014, 2016-2018 Google Inc. All rights reserved
go.opentelemetry.io/proto otlp/v0.7.0 github:open-telemetry/opentelemetry-proto-go:otlp/v0.7.0: https://github.com/open-telemetry/opentelemetry-proto-go
Copyright (C) 2019-2020 OpenTelemetry Authors
go-spew v1.1.1 github:davecgh/go-spew:v1.1.1: https://github.com/davecgh/go-spew
Copyright (C) 2012-2016 Dave Collins <dave@davec.name> Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copy
Copyright (C) 2012-2016 Dave Collins <dave@davec.name> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above c
Copyright (C) 2013 Dave Collins <dave@davec.name> Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright
go-stack-stack v1.8.0 github:go-stack/stack:v1.8.0: http://github.com/go-stack/stack
Copyright (C) 2014 Chris Hines
Go support for Mobile devices 20190704-snapshot-d2bd2a29 long_tail:go.googlesource.com/mobile#d2bd2a29d028cb94031e5e81788b19b371d00eb8
No Copyrights found
Go Testify 1.7.0 github:stretchr/testify:v1.7.0: https://github.com/stretchr/testify
Copyright (C) 2012-2020 Mat Ryer, Tyler Bunnell and contributors.
groupcache 20200125-snapshot-8c9f03a8 github:golang/groupcache:8c9f03a8e57eb486e42badaed3fb287da51807ba: https://github.com/golang/groupcache
Copyright (C) 2012-2013 Google Inc.
grpc-gateway v1.16.0 unknown: https://github.com/grpc-ecosystem/grpc-gateway
No Copyrights found
grpc-go v1.51.0 github:grpc/grpc-go:v1.51.0: https://github.com/grpc/grpc-go
Copyright (C) 2014-2022 gRPC authors.
Copyright (C) 2015, 2018, 2020 The gRPC Authors
hashicorp-golang-lru v0.5.1 github:hashicorp/golang-lru:v0.5.1: https://github.com/hashicorp/golang-lru
No Copyrights found
ianlancetaylor/demangle 20181102-snapshot-5e5cf602 github:ianlancetaylor/demangle:5e5cf60278f657d30daa329dd0e7e893b6b8f027: https://github.com/ianlancetaylor/demangle
Copyright (C) 2015 The Go Authors. All rights reserved
inconshreveable/mousetrap v1.0.1 github:inconshreveable/mousetrap:v1.0.1: https://github.com/inconshreveable/mousetrap
No Copyrights found
jpillora-backoff 1.0.0 github:jpillora/backoff:v1.0.0: https://github.com/jpillora/backoff
Copyright (C) 2017 Jaime Pillora
jsoniter-go v1.1.12 github:json-iterator/go:v1.1.12: http://jsoniter.com/
Copyright (C) 2016 json-iterator
jstemmer/go-junit-report v0.9.1 github:jstemmer/go-junit-report:v0.9.1: https://github.com/jstemmer/go-junit-report
Copyright (C) 2012 Joel Stemmer
julienschmidt/httprouter v1.3.0 github:julienschmidt/httprouter:v1.3.0: https://github.com/julienschmidt/httprouter
Copyright (C) 2009 The Go Authors.
Copyright (C) 2013 Julien Schmidt All rights reserved
Copyright (C) 2013 Julien Schmidt. All rights reserved
k8s.io/klog v2.90.1 github:kubernetes/klog:v2.90.1: https://github.com/kubernetes/klog
Copyright (C) 2013 Google Inc. All Rights Reserved
Copyright (C) 2014, 2019-2023 The Kubernetes Authors.
Copyright (C) 2020 Intel Coporation.
k8s.io/kubelet v0.27.3 github:kubernetes/kubelet:v0.27.3: https://github.com/kubernetes/kubelet
Copyright (C) 2015, 2017-2018, 2020, 2021-2022 The Kubernetes Authors.
k8s.io/utils 20230209-snapshot-a36077c3 github:kubernetes/utils:a36077c30491f97c75870eca96001006884c1cc9: https://github.com/kubernetes/utils
No Copyrights found
kisielk-gotool v1.0.0 github:kisielk/gotool:v1.0.0: https://github.com/kisielk/gotool
Copyright (C) 2009, 2011-2012, 2017 The Go Authors. All rights reserved
Copyright (C) 2013 Kamil Kisiel <kamil@kamilkisiel.net>
kr/pretty 0.2.1 github:kr/pretty:v0.2.1: https://github.com/kr/pretty
Copyright (C) 2012 Keith Rarick
kubernetes/api v0.27.3 github:kubernetes/Api:v0.27.3: https://github.com/kubernetes/api
Copyright (C) 2015-2023 The Kubernetes Authors.
kubernetes/apimachinery v0.27.3 github:kubernetes/APIMachinery:v0.27.3: https://github.com/kubernetes/apimachinery
Copyright (C) 2009, 2013 The Go Authors. All rights reserved
Copyright (C) 2014-2023 The Kubernetes Authors.
kubernetes/component-base v0.27.3 github:kubernetes/component-base:v0.27.3: https://github.com/kubernetes/component-base
Copyright (C) 2014-2023 The Kubernetes Authors.
kubernetes-sigs/structured-merge-diff v4.2.3 github:kubernetes-sigs/structured-merge-diff:v4.2.3: https://github.com/kubernetes-sigs/structured-merge-diff
Copyright (C) 2006 Kirill Simonov
Copyright (C) 2011-2016 Canonical Ltd.
Copyright (C) 2014 Google Inc. All rights reserved
Copyright (C) 2016 json-iterator
Copyright (C) 2018-2020 The Kubernetes Authors.
logfmt 20140226-snapshot-b84e30ac github:kr/logfmt:b84e30acd515aadc4b783ad4ff83aff3299bdfe0: http://godoc.org/github.com/kr/logfmt
Copyright (C) 2010 The Go Authors. All rights reserved
Copyright (C) 2013 Keith Rarick, Blake Mizerany
martian v2.1.0 github:google/martian:v2.1.0: https://github.com/google/martian
Copyright (C) 2015-2018 google inc. all rights reserved
martian v3.0.0 github:google/martian:v3.0.0: https://github.com/google/martian
Copyright (C) 2015-2018 Google Inc. All rights reserved
matttproud-golang_protobuf_extensions v1.0.2 github:matttproud/golang_protobuf_extensions:v1.0.2: https://github.com/matttproud/golang_protobuf_extensions
Copyright (C) 2012 Matt T. Proud (matt.proud@gmail.com)
Copyright (C) 2013, 2016 Matt T. Proud
modern-go/concurrent 20180305-snapshot-bacd9c7e github:modern-go/concurrent:bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94: https://github.com/modern-go/concurrent
No Copyrights found
modern-go/reflect2 v1.0.2 github:modern-go/reflect2:v1.0.2: https://github.com/modern-go/reflect2
No Copyrights found
mwitkow/go-conntrack 20190716-snapshot-2f068394 github:mwitkow/go-conntrack:2f068394615f73e460c2f3d2c158b0ad9321cadb: https://github.com/mwitkow/go-conntrack
Copyright (C) 2016 Michal Witkowski. All Rights Reserved
NVIDIA/gpu-monitoring-tools 1.0.0 null
No Copyrights found
OpenCensus 0.2.1 github:census-instrumentation/opencensus-proto:v0.2.1: https://opencensus.io/
Copyright (C) 2018-2019 OpenCensus Authors
pkg/errors v0.9.1 github:pkg/errors:v0.9.1: https://github.com/pkg/errors
Copyright (C) 2015 Dave Cheney <dave@cheney.net> All rights reserved
pmezard-go-difflib 1.0.0 github:pmezard/go-difflib:v1.0.0: https://github.com/pmezard/go-difflib
Copyright (C) 2013 Patrick Mezard All rights reserved
prometheus-client_model v0.3.0 github:prometheus/client_model:v0.3.0: https://github.com/prometheus/client_model
Copyright (C) 2012-2015 The Prometheus Authors
prometheus-common v0.37.0 github:prometheus/common:v0.37.0: https://github.com/prometheus/common
Copyright (C) 2011 Open Knowledge Foundation Ltd. All rights reserved
Copyright (C) 2013-2022 The Prometheus Authors
Copyright (C) 2020 The Prometheus-operator Authors
Prometheus - node exporter v1.0.0-rc.1 github:prometheus/node_exporter:v1.0.0-rc.1: https://prometheus.io/
Copyright (C) 2006-2010 Johannes Berg <johannes@sipsolutions.net>
Copyright (C) 2008 Colin McCabe <colin@cozybit.com>
Copyright (C) 2008 Jouni Malinen <jouni.malinen@atheros.com>
Copyright (C) 2008 Luis Carlos Cobo <luisca@cozybit.com>
Copyright (C) 2008 Michael Buesch <m@bues.ch>
Copyright (C) 2008 Michael Wu <flamingice@sourmilk.net>
Copyright (C) 2008-2009 Luis R. Rodriguez <lrodriguez@atheros.com>
Copyright (C) 2009-2019 The Go Authors. All rights reserved
Copyright (C) 2010 The Go Authors
Copyright (C) 2011 Open Knowledge Foundation Ltd. All rights reserved
Copyright (C) 2011-2016 Canonical Ltd.
Copyright (C) 2012 Matt T. Proud (matt.proud@gmail.com)
Copyright (C) 2012-2015 The Prometheus Authors This product includes software developed at
Copyright (C) 2012-2015 The Prometheus Authors This product includes software developed at SoundCloud Ltd. (http://soundcloud.com/).
Copyright (C) 2013 Blake Mizerany
Copyright (C) 2013 Georg Reinke (<guelfey at gmail dot com>), Google All rights reserved
Copyright (C) 2013 Kamil Kisiel <kamil@kamilkisiel.net>
Copyright (C) 2013 Matt T. Proud
Copyright (C) 2013 The Go Authors,
Copyright (C) 2013 TOML authors
Copyright (C) 2013-2015 Blake Mizerany, Bj
Copyright (C) 2013-2020 The Prometheus Authors
Copyright (C) 2014 Alec Thomas
Copyright (C) 2014, 2017 Prometheus Team
Copyright (C) 2015 Dave Cheney <dave@cheney.net> All rights reserved
Copyright (C) 2015 go-logfmt
Copyright (C) 2015 Intel Deutschland GmbH 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 a
Copyright (C) 2015 Peter Bourgon
Copyright (C) 2015 SoundCloud Ltd.
Copyright (C) 2015, 2018 CoreOS, Inc.
Copyright (C) 2015-2017 Brett Vickers.
Copyright (C) 2015-2017 Brett Vickers. All rights reserved
Copyright (C) 2016 Caleb Spare
Copyright (C) 2016 Dominik Honnef
Copyright (C) 2016 Michal Witkowski. All Rights Reserved
Copyright (C) 2016, 2018-2019 Dominik Honnef. All rights reserved
Copyright (C) 2016-2017 Matt Layher
Copyright (C) 2016-2017, 2019 Uber Technologies, Inc.
Copyright (C) 2017 kadota kyohei All rights reserved
Copyright (C) 2017 Yasuhiro Matsumoto
Copyright (C) 2018 CoreOS, Inc This product includes software developed at CoreOS, Inc.
Copyright (C) 2018 Google Inc.
Copyright (C) 2019 Daniel Hodges
prometheus-procfs 0.8.0 github:prometheus/procfs:v0.8.0: https://github.com/prometheus/procfs.git
Copyright (C) 2014, 2017 Prometheus Team
Copyright (C) 2014-2015 The Prometheus Authors This product includes software developed at
Copyright (C) 2017-2022 The Prometheus Authors
pty v1.1.1 github:kr/pty:v1.1.1: https://github.com/kr/pty
Copyright (C) 2011 Keith Rarick
rogpeppe/go-internal v1.3.0 github:rogpeppe/go-internal:v1.3.0: http://github.com/rogpeppe/go-internal/
Copyright (C) 2010-2012, 2014, 2015-2018 The Go Authors. All rights reserved
rsc/binaryregexp v0.2.0 github:rsc/binaryregexp:v0.2.0
Copyright (C) 2009-2015 The Go Authors. All rights reserved
rsc/quote v3.1.0 github:rsc/quote:v3.1.0
Copyright (C) 2009, 2018 The Go Authors. All rights reserved
rsc/sampler v1.3.0 github:rsc/sampler:v1.3.0
Copyright (C) 2009, 2018 The Go Authors. All rights reserved
sigs.k8s.io/json 20221116-snapshot-bc3834ca github:kubernetes-sigs/json:bc3834ca7abd3a90f03ef00a27ad80cb892f9c21: https://github.com/kubernetes-sigs/json
Copyright (C) 2009-2011, 2013, 2016, 2018-2019, 2021 The Go Authors. All rights reserved
Copyright (C) 2021 The Kubernetes Authors.
sigs.k8s.io/yaml v1.3.0 github:kubernetes-sigs/yaml:v1.3.0: https://github.com/kubernetes-sigs/yaml
Copyright (C) 2006 Kirill Simonov
Copyright (C) 2011-2016 Canonical Ltd.
Copyright (C) 2012-2013 The Go Authors. All rights reserved
Copyright (C) 2012-2016 Dave Collins <dave@davec.name> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above c
Copyright (C) 2013-2016 Dave Collins <dave@davec.name> Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copy
Copyright (C) 2014 Sam Ghods
Sirupsen/logrus v1.6.0 github:Sirupsen/logrus:v1.6.0: https://github.com/Sirupsen/logrus
Copyright (C) 2012 Miki Tebeka <miki.tebeka@gmail.com>.
Copyright (C) 2014 Simon Eskildsen
spf13-cobra v1.6.0 github:spf13/cobra:v1.6.0: https://github.com/spf13/cobra
Copyright (C) 2013-2022 The Cobra Authors
stretchr/objx v0.1.1 github:stretchr/objx:v0.1.1: https://github.com/stretchr/objx
Copyright (C) 2012-2013 Mat Ryer and Tyler Bunnell Please consider promoting this project if you find it useful.
Copyright (C) 2012-2016 Dave Collins <dave@davec.name> Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copy
Copyright (C) 2013 Patrick Mezard All rights reserved
Copyright (C) 2014 Stretchr, Inc.
Copyright (C) 2017-2018 objx contributors
xgb 20160522-snapshot-27f12275 github:BurntSushi/xgb:27f122750802c950b2c869a5b63dafcf590ced95: https://github.com/BurntSushi/xgb
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
Copyright (C) 2009 The XGB Authors. All rights reserved
yaml for Go 20200512-snapshot-9f266ea9 github:go-yaml/yaml:9f266ea9e77c4c7aab4cf02650570e7c7b3031a5: https://github.com/go-yaml/yaml/tree/v2
Copyright (C) 2006-2011 Kirill Simonov
Copyright (C) 2011-2016 Canonical Ltd.
Copyright (C) 2011-2019 Canonical Ltd
Copyright (C) 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
yaml for Go v2.4.0 unknown: https://github.com/go-yaml/yaml/tree/v2
No Copyrights found
yuin/goldmark v1.2.1 github:yuin/goldmark:v1.2.1: https://github.com/yuin/goldmark
Copyright (C) 2019 Yusuke Inuzuka
Licenses:
Apache License 2.0
(btree v1.0.0, census-instrumentation/opencensus-go v0.22.4, client_golang 1.14.0, cncf/udpa 20210930-snapshot-04548b0d, envoyproxy/go-control-plane 20220324-snapshot-49ff2738, envoyproxy/protoc-gen-validate v0.1.0, github.com/cncf/xds 20211011-snapshot-cb28da34, github.com/prometheus/exporter-toolkit v0.7.0, go-logr/logr v1.2.3, go.opentelemetry.io/proto otlp/v0.7.0, golang-mock v1.4.4, golang/appengine v1.6.6, golang/glog 20160125-snapshot-23def4e6, google-cloud-go bigquery/v1.8.0, google-cloud-go datastore/v1.1.0, google-cloud-go pubsub/v1.3.1, google-cloud-go storage/v1.10.0, google-cloud-go v0.65.0, google-gofuzz v1.1.0, google/pprof 20200707-snapshot-1a94d864, google/renameio v0.1.0, googleapis/go-genproto 20220502-snapshot-c8bf987b, groupcache 20200125-snapshot-8c9f03a8, grpc-go v1.51.0, inconshreveable/mousetrap v1.0.1, k8s.io/klog v2.90.1, k8s.io/kubelet v0.27.3, k8s.io/utils 20230209-snapshot-a36077c3, kubernetes-sigs/structured-merge-diff v4.2.3, kubernetes/api v0.27.3, kubernetes/apimachinery v0.27.3, kubernetes/component-base v0.27.3, martian v2.1.0, martian v3.0.0, matttproud-golang_protobuf_extensions v1.0.2, modern-go/concurrent 20180305-snapshot-bacd9c7e, modern-go/reflect2 v1.0.2, mwitkow/go-conntrack 20190716-snapshot-2f068394, NVIDIA/gpu-monitoring-tools 1.0.0, OpenCensus 0.2.1, Prometheus - node exporter v1.0.0-rc.1, prometheus-client_model v0.3.0, prometheus-common v0.37.0, prometheus-procfs 0.8.0, sigs.k8s.io/json 20221116-snapshot-bc3834ca, sigs.k8s.io/yaml v1.3.0, spf13-cobra v1.6.0, yaml for Go 20200512-snapshot-9f266ea9, yaml for Go v2.4.0)
Apache License
Version 2.0, January 2004
=========================
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and
distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct or
indirect, to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation or
translation of a Source form, including but not limited to compiled object code,
generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form, made
available under the License, as indicated by a copyright notice that is included
in or attached to the work (an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object form, that is
based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative Works
shall not include works that remain separable from, or merely link (or bind by
name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative Works
thereof, that is intentionally submitted to Licensor for inclusion in the Work by
the copyright owner or by an individual or Legal Entity authorized to submit on
behalf of the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent to the
Licensor or its representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue tracking systems
that are managed by, or on behalf of, the Licensor for the purpose of discussing
and improving the Work, but excluding communication that is conspicuously marked
or otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of
whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable copyright license to
reproduce, prepare Derivative Works of, publicly display, publicly perform,
sublicense, and distribute the Work and such Derivative Works in Source or Object
form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s) with the Work to
which such Contribution(s) was submitted. If You institute patent litigation
against any entity (including a cross-claim or counterclaim in a lawsuit)
alleging that the Work or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent licenses granted to
You under this License for that Work shall terminate as of the date such
litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and in
Source or Object form, provided that You meet the following conditions:
a. You must give any other recipients of the Work or Derivative Works a copy of
this License; and
b. You must cause any modified files to carry prominent notices stating that
You changed the files; and
c. You must retain, in the Source form of any Derivative Works that You
distribute, all copyright, patent, trademark, and attribution notices from
the Source form of the Work, excluding those notices that do not pertain to
any part of the Derivative Works; and
d. If the Work includes a "NOTICE" text file as part of its distribution, then
any Derivative Works that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding those
notices that do not pertain to any part of the Derivative Works, in at least
one of the following places: within a NOTICE text file distributed as part of
the Derivative Works; within the Source form or documentation, if provided
along with the Derivative Works; or, within a display generated by the
Derivative Works, if and wherever such third-party notices normally appear.
The contents of the NOTICE file are for informational purposes only and do
not modify the License. You may add Your own attribution notices within
Derivative Works that You distribute, alongside or as an addendum to the
NOTICE text from the Work, provided that such additional attribution notices
cannot be construed as modifying the License.
You may add Your own copyright statement to Your modifications and may provide
additional or different license terms and conditions for use, reproduction, or
distribution of Your modifications, or for any such Derivative Works as a whole,
provided Your use, reproduction, and distribution of the Work otherwise complies
with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any
Contribution intentionally submitted for inclusion in the Work by You to the
Licensor shall be under the terms and conditions of this License, without any
additional terms or conditions. Notwithstanding the above, nothing herein shall
supersede or modify the terms of any separate license agreement you may have
executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names,
trademarks, service marks, or product names of the Licensor, except as required
for reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in
writing, Licensor provides the Work (and each Contributor provides its
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied, including, without limitation, any warranties or
conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any risks
associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether in
tort (including negligence), contract, or otherwise, unless required by
applicable law (such as deliberate and grossly negligent acts) or agreed to in
writing, shall any Contributor be liable to You for damages, including any
direct, indirect, special, incidental, or consequential damages of any character
arising as a result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill, work stoppage,
computer failure or malfunction, or any and all other commercial damages or
losses), even if such Contributor has been advised of the possibility of such
damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work or
Derivative Works thereof, You may choose to offer, and charge a fee for,
acceptance of support, warranty, indemnity, or other liability obligations and/or
rights consistent with this License. However, in accepting such obligations, You
may act only on Your own behalf and on Your sole responsibility, not on behalf of
any other Contributor, and only if You agree to indemnify, defend, and hold each
Contributor harmless for any liability incurred by, or claims asserted against,
such Contributor by reason of your accepting any such warranty or additional
liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own
identifying information. (Don't include the brackets!) The text should be
enclosed in the appropriate comment syntax for the file format. We also recommend
that a file or class name and description of purpose be included on the same
"printed page" as the copyright notice for easier identification within
third-party archives.
Copyright [yyyy] [name of copyright owner] Licensed under the Apache License,
Version 2.0 (the "License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law
or agreed to in writing, software distributed under the License is
distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the specific language
governing permissions and limitations under the License.
---
BSD 2-clause "Simplified" License
(pkg/errors v0.9.1)
Copyright (c) 2015, Dave Cheney <dave@cheney.net>
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
---
BSD 2-clause "Simplified" License
(go-check-check 20190902-snapshot-41f04d3b)
BSD Two Clause License
======================
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 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.
---
BSD 3-clause "New" or "Revised" License
(googleapis/gax-go v2.0.5)
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
---
BSD 3-clause "New" or "Revised" License
(kisielk-gotool v1.0.0)
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
---
BSD 3-clause "New" or "Revised" License
(grpc-gateway v1.16.0)
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
---
BSD 3-clause "New" or "Revised" License
(pmezard-go-difflib 1.0.0)
Source: https://github.com/pmezard/go-difflib
Files: *
Copyright: 2013 Patrick Mézard
License: BSD-3-clause
Files: debian/*
Copyright: 2016 Dmitry Smirnov <onlyjob@debian.org>
License: BSD-3-clause
License: BSD-3-clause
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
.
Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
.
Redistributions in binary form must 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
---
BSD 3-clause "New" or "Revised" License
(golang-github-spf13-pflag-dev v1.0.5)
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
---
BSD 3-clause "New" or "Revised" License
(ianlancetaylor/demangle 20181102-snapshot-5e5cf602)
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