forked from nanovms/ops
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcoverage.out
More file actions
3856 lines (3856 loc) · 230 KB
/
coverage.out
File metadata and controls
3856 lines (3856 loc) · 230 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
mode: set
github.com/nanovms/ops/network/iproute_network_service.go:14.56,17.16 3 0
github.com/nanovms/ops/network/iproute_network_service.go:21.2,22.8 2 0
github.com/nanovms/ops/network/iproute_network_service.go:17.16,19.3 1 0
github.com/nanovms/ops/network/iproute_network_service.go:26.56,28.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:31.70,33.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:36.63,38.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:41.106,43.16 2 0
github.com/nanovms/ops/network/iproute_network_service.go:47.2,49.33 2 0
github.com/nanovms/ops/network/iproute_network_service.go:59.2,59.19 1 0
github.com/nanovms/ops/network/iproute_network_service.go:43.16,45.3 1 0
github.com/nanovms/ops/network/iproute_network_service.go:49.33,52.21 2 0
github.com/nanovms/ops/network/iproute_network_service.go:52.21,53.56 1 0
github.com/nanovms/ops/network/iproute_network_service.go:53.56,55.5 1 0
github.com/nanovms/ops/network/iproute_network_service.go:63.95,65.16 2 0
github.com/nanovms/ops/network/iproute_network_service.go:69.2,73.36 3 0
github.com/nanovms/ops/network/iproute_network_service.go:81.2,81.23 1 0
github.com/nanovms/ops/network/iproute_network_service.go:65.16,67.3 1 0
github.com/nanovms/ops/network/iproute_network_service.go:73.36,76.21 2 0
github.com/nanovms/ops/network/iproute_network_service.go:76.21,78.4 1 0
github.com/nanovms/ops/network/iproute_network_service.go:85.88,87.16 2 0
github.com/nanovms/ops/network/iproute_network_service.go:91.2,91.25 1 0
github.com/nanovms/ops/network/iproute_network_service.go:97.2,97.19 1 0
github.com/nanovms/ops/network/iproute_network_service.go:87.16,89.3 1 0
github.com/nanovms/ops/network/iproute_network_service.go:91.25,92.21 1 0
github.com/nanovms/ops/network/iproute_network_service.go:92.21,94.4 1 0
github.com/nanovms/ops/network/iproute_network_service.go:101.68,103.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:106.80,108.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:111.96,115.2 2 0
github.com/nanovms/ops/network/iproute_network_service.go:118.78,122.2 2 0
github.com/nanovms/ops/network/iproute_network_service.go:125.70,127.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:130.72,132.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:135.71,137.2 1 0
github.com/nanovms/ops/network/iproute_network_service.go:140.70,142.16 2 0
github.com/nanovms/ops/network/iproute_network_service.go:146.2,148.36 2 0
github.com/nanovms/ops/network/iproute_network_service.go:158.2,158.19 1 0
github.com/nanovms/ops/network/iproute_network_service.go:142.16,144.3 1 0
github.com/nanovms/ops/network/iproute_network_service.go:148.36,151.21 2 0
github.com/nanovms/ops/network/iproute_network_service.go:151.21,152.56 1 0
github.com/nanovms/ops/network/iproute_network_service.go:152.56,154.5 1 0
github.com/nanovms/ops/network/iproute_network_service.go:162.87,164.16 2 0
github.com/nanovms/ops/network/iproute_network_service.go:168.2,170.21 2 0
github.com/nanovms/ops/network/iproute_network_service.go:181.2,181.16 1 0
github.com/nanovms/ops/network/iproute_network_service.go:164.16,166.3 1 0
github.com/nanovms/ops/network/iproute_network_service.go:170.21,171.27 1 0
github.com/nanovms/ops/network/iproute_network_service.go:171.27,173.39 1 0
github.com/nanovms/ops/network/iproute_network_service.go:173.39,176.5 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:27.119,29.16 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:33.2,33.16 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:40.2,42.13 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:105.2,106.16 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:110.2,110.14 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:117.2,117.12 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:29.16,31.3 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:33.16,35.17 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:35.17,37.4 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:42.13,45.17 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:49.3,49.20 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:56.3,56.19 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:80.3,81.17 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:85.3,85.24 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:92.3,93.17 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:97.3,97.18 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:45.17,47.4 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:49.20,51.18 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:51.18,53.5 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:56.19,62.18 5 1
github.com/nanovms/ops/network/setup_network_interfaces.go:66.4,66.35 1 1
github.com/nanovms/ops/network/setup_network_interfaces.go:62.18,64.5 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:66.35,68.19 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:72.5,73.19 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:68.19,70.6 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:73.19,75.6 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:81.17,83.4 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:85.24,87.18 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:87.18,89.5 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:93.17,95.4 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:97.18,99.18 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:99.18,101.5 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:106.16,108.3 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:110.14,112.17 2 1
github.com/nanovms/ops/network/setup_network_interfaces.go:112.17,114.4 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:121.109,123.16 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:127.2,127.13 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:161.2,161.12 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:123.16,125.3 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:127.13,129.17 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:133.3,135.39 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:147.3,147.31 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:129.17,131.4 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:135.39,137.18 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:141.4,141.12 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:137.18,139.5 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:141.12,143.10 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:147.31,149.18 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:153.4,154.18 2 0
github.com/nanovms/ops/network/setup_network_interfaces.go:149.18,151.5 1 0
github.com/nanovms/ops/network/setup_network_interfaces.go:154.18,156.5 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:17.62,20.16 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:24.2,44.16 6 1
github.com/nanovms/ops/upcloud/provider_instance.go:48.2,52.16 4 1
github.com/nanovms/ops/upcloud/provider_instance.go:57.2,60.26 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:64.2,70.16 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:75.2,75.12 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:20.16,22.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:44.16,46.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:52.16,55.3 2 0
github.com/nanovms/ops/upcloud/provider_instance.go:60.26,62.3 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:70.16,73.3 2 0
github.com/nanovms/ops/upcloud/provider_instance.go:79.67,81.16 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:85.2,96.30 5 1
github.com/nanovms/ops/upcloud/provider_instance.go:108.2,110.8 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:81.16,83.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:96.30,106.3 7 0
github.com/nanovms/ops/upcloud/provider_instance.go:114.100,119.16 4 1
github.com/nanovms/ops/upcloud/provider_instance.go:139.2,142.32 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:146.2,146.39 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:155.2,155.8 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:119.16,124.17 4 0
github.com/nanovms/ops/upcloud/provider_instance.go:128.3,128.37 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:124.17,126.4 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:128.37,130.4 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:131.8,132.32 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:132.32,133.34 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:133.34,135.5 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:142.32,144.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:146.39,147.10 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:148.34,149.44 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:150.22,151.10 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:158.127,162.16 3 0
github.com/nanovms/ops/upcloud/provider_instance.go:167.2,167.25 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:162.16,165.3 2 0
github.com/nanovms/ops/upcloud/provider_instance.go:171.89,173.16 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:177.2,177.34 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:189.2,196.8 4 1
github.com/nanovms/ops/upcloud/provider_instance.go:173.16,175.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:177.34,179.17 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:183.3,184.17 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:179.17,181.4 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:184.17,186.4 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:200.87,202.16 2 0
github.com/nanovms/ops/upcloud/provider_instance.go:206.2,209.8 3 0
github.com/nanovms/ops/upcloud/provider_instance.go:202.16,204.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:212.56,220.2 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:223.88,225.16 2 0
github.com/nanovms/ops/upcloud/provider_instance.go:229.2,233.8 3 0
github.com/nanovms/ops/upcloud/provider_instance.go:225.16,227.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:236.57,244.2 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:246.116,249.16 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:253.2,255.8 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:249.16,251.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:258.106,260.16 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:264.2,264.36 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:273.2,275.8 2 0
github.com/nanovms/ops/upcloud/provider_instance.go:260.16,262.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:264.36,265.22 1 1
github.com/nanovms/ops/upcloud/provider_instance.go:265.22,270.4 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:279.112,285.16 4 1
github.com/nanovms/ops/upcloud/provider_instance.go:289.2,292.47 3 1
github.com/nanovms/ops/upcloud/provider_instance.go:300.2,308.8 2 1
github.com/nanovms/ops/upcloud/provider_instance.go:285.16,287.3 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:292.47,293.28 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:293.28,295.4 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:295.9,297.4 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:312.94,314.2 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:317.98,319.2 1 0
github.com/nanovms/ops/upcloud/provider_instance.go:321.71,332.2 3 1
github.com/nanovms/ops/upcloud/provider_store.go:13.137,15.16 2 1
github.com/nanovms/ops/upcloud/provider_store.go:19.2,22.17 3 1
github.com/nanovms/ops/upcloud/provider_store.go:28.2,36.16 4 1
github.com/nanovms/ops/upcloud/provider_store.go:40.2,50.16 5 1
github.com/nanovms/ops/upcloud/provider_store.go:54.2,57.16 3 1
github.com/nanovms/ops/upcloud/provider_store.go:61.2,63.8 2 1
github.com/nanovms/ops/upcloud/provider_store.go:15.16,17.3 1 0
github.com/nanovms/ops/upcloud/provider_store.go:22.17,24.3 1 1
github.com/nanovms/ops/upcloud/provider_store.go:24.8,24.26 1 0
github.com/nanovms/ops/upcloud/provider_store.go:24.26,26.3 1 0
github.com/nanovms/ops/upcloud/provider_store.go:36.16,38.3 1 0
github.com/nanovms/ops/upcloud/provider_store.go:50.16,52.3 1 0
github.com/nanovms/ops/upcloud/provider_store.go:57.16,59.3 1 0
github.com/nanovms/ops/upcloud/provider_store.go:66.72,76.2 3 1
github.com/nanovms/ops/upcloud/provider_store.go:78.53,84.2 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:15.125,17.16 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:21.2,22.16 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:26.2,28.17 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:17.16,19.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:22.16,24.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:32.98,41.16 4 1
github.com/nanovms/ops/upcloud/provider_volume.go:45.2,50.39 4 1
github.com/nanovms/ops/upcloud/provider_volume.go:54.2,54.47 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:70.2,70.8 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:41.16,43.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:50.39,52.3 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:54.47,55.10 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:56.25,64.6 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:65.22,66.10 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:73.106,79.16 3 1
github.com/nanovms/ops/upcloud/provider_volume.go:84.2,84.22 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:79.16,82.3 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:88.79,90.16 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:94.2,96.8 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:90.16,92.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:100.93,102.16 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:106.2,106.34 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:119.2,120.16 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:124.2,135.8 6 1
github.com/nanovms/ops/upcloud/provider_volume.go:102.16,104.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:106.34,109.17 3 1
github.com/nanovms/ops/upcloud/provider_volume.go:113.3,114.17 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:109.17,111.4 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:114.17,116.4 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:120.16,122.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:139.86,141.16 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:145.2,148.16 3 1
github.com/nanovms/ops/upcloud/provider_volume.go:152.2,154.49 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:182.2,184.8 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:141.16,143.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:148.16,150.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:154.49,155.22 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:155.22,156.33 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:169.4,178.10 5 1
github.com/nanovms/ops/upcloud/provider_volume.go:156.33,159.19 3 1
github.com/nanovms/ops/upcloud/provider_volume.go:163.5,164.19 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:159.19,161.6 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:164.19,166.6 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:187.116,189.16 2 1
github.com/nanovms/ops/upcloud/provider_volume.go:193.2,193.26 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:200.2,202.8 2 0
github.com/nanovms/ops/upcloud/provider_volume.go:189.16,191.3 1 0
github.com/nanovms/ops/upcloud/provider_volume.go:193.26,194.27 1 1
github.com/nanovms/ops/upcloud/provider_volume.go:194.27,197.4 2 1
github.com/nanovms/ops/upcloud/provider.go:30.30,32.2 1 0
github.com/nanovms/ops/upcloud/provider.go:35.56,37.2 1 1
github.com/nanovms/ops/upcloud/provider.go:40.68,42.16 2 1
github.com/nanovms/ops/upcloud/provider.go:46.2,47.20 2 1
github.com/nanovms/ops/upcloud/provider.go:51.2,52.18 2 1
github.com/nanovms/ops/upcloud/provider.go:56.2,56.22 1 1
github.com/nanovms/ops/upcloud/provider.go:64.2,66.16 2 1
github.com/nanovms/ops/upcloud/provider.go:73.2,73.12 1 1
github.com/nanovms/ops/upcloud/provider.go:42.16,44.3 1 1
github.com/nanovms/ops/upcloud/provider.go:47.20,49.3 1 1
github.com/nanovms/ops/upcloud/provider.go:52.18,54.3 1 1
github.com/nanovms/ops/upcloud/provider.go:56.22,62.3 3 0
github.com/nanovms/ops/upcloud/provider.go:66.16,67.51 1 1
github.com/nanovms/ops/upcloud/provider.go:70.3,70.43 1 1
github.com/nanovms/ops/upcloud/provider.go:67.51,69.4 1 0
github.com/nanovms/ops/upcloud/provider.go:76.74,80.16 3 1
github.com/nanovms/ops/upcloud/provider.go:84.2,84.38 1 1
github.com/nanovms/ops/upcloud/provider.go:91.2,99.16 4 1
github.com/nanovms/ops/upcloud/provider.go:103.2,105.8 2 1
github.com/nanovms/ops/upcloud/provider.go:80.16,82.3 1 0
github.com/nanovms/ops/upcloud/provider.go:84.38,85.22 1 1
github.com/nanovms/ops/upcloud/provider.go:85.22,88.4 2 1
github.com/nanovms/ops/upcloud/provider.go:99.16,101.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:15.68,18.16 3 0
github.com/nanovms/ops/upcloud/provider_image.go:22.2,22.46 1 0
github.com/nanovms/ops/upcloud/provider_image.go:18.16,20.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:26.95,29.16 3 0
github.com/nanovms/ops/upcloud/provider_image.go:33.2,33.46 1 0
github.com/nanovms/ops/upcloud/provider_image.go:29.16,31.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:37.77,40.16 2 1
github.com/nanovms/ops/upcloud/provider_image.go:44.2,51.16 4 1
github.com/nanovms/ops/upcloud/provider_image.go:55.2,58.16 3 1
github.com/nanovms/ops/upcloud/provider_image.go:62.2,63.16 2 1
github.com/nanovms/ops/upcloud/provider_image.go:67.2,67.12 1 1
github.com/nanovms/ops/upcloud/provider_image.go:40.16,42.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:51.16,53.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:58.16,60.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:63.16,65.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:71.58,73.16 2 1
github.com/nanovms/ops/upcloud/provider_image.go:77.2,86.27 5 1
github.com/nanovms/ops/upcloud/provider_image.go:95.2,96.12 2 1
github.com/nanovms/ops/upcloud/provider_image.go:73.16,75.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:86.27,94.3 7 0
github.com/nanovms/ops/upcloud/provider_image.go:100.91,109.16 4 1
github.com/nanovms/ops/upcloud/provider_image.go:113.2,115.39 2 1
github.com/nanovms/ops/upcloud/provider_image.go:119.2,119.8 1 1
github.com/nanovms/ops/upcloud/provider_image.go:109.16,111.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:115.39,117.3 1 1
github.com/nanovms/ops/upcloud/provider_image.go:122.90,130.2 1 1
github.com/nanovms/ops/upcloud/provider_image.go:133.83,135.16 2 1
github.com/nanovms/ops/upcloud/provider_image.go:139.2,141.8 2 1
github.com/nanovms/ops/upcloud/provider_image.go:135.16,137.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:144.112,146.16 2 1
github.com/nanovms/ops/upcloud/provider_image.go:150.2,150.27 1 1
github.com/nanovms/ops/upcloud/provider_image.go:157.2,159.8 2 0
github.com/nanovms/ops/upcloud/provider_image.go:146.16,148.3 1 0
github.com/nanovms/ops/upcloud/provider_image.go:150.27,151.26 1 1
github.com/nanovms/ops/upcloud/provider_image.go:151.26,154.4 2 1
github.com/nanovms/ops/upcloud/provider_image.go:163.92,165.2 1 0
github.com/nanovms/ops/upcloud/provider_image.go:168.101,170.2 1 0
github.com/nanovms/ops/upcloud/provider_image.go:173.72,175.2 1 0
github.com/nanovms/ops/lepton/openstack.go:14.37,16.2 1 0
github.com/nanovms/ops/lepton/openstack.go:24.62,28.16 2 0
github.com/nanovms/ops/lepton/openstack.go:32.2,33.16 2 0
github.com/nanovms/ops/lepton/openstack.go:37.2,37.12 1 0
github.com/nanovms/ops/lepton/openstack.go:28.16,30.3 1 0
github.com/nanovms/ops/lepton/openstack.go:33.16,35.3 1 0
github.com/nanovms/ops/lepton/openstack.go:40.74,42.16 2 0
github.com/nanovms/ops/lepton/openstack.go:46.2,51.16 3 0
github.com/nanovms/ops/lepton/openstack.go:55.2,56.16 2 0
github.com/nanovms/ops/lepton/openstack.go:60.2,60.16 1 0
github.com/nanovms/ops/lepton/openstack.go:65.2,65.36 1 0
github.com/nanovms/ops/lepton/openstack.go:71.2,71.56 1 0
github.com/nanovms/ops/lepton/openstack.go:42.16,44.3 1 0
github.com/nanovms/ops/lepton/openstack.go:51.16,52.13 1 0
github.com/nanovms/ops/lepton/openstack.go:56.16,57.13 1 0
github.com/nanovms/ops/lepton/openstack.go:60.16,63.3 1 0
github.com/nanovms/ops/lepton/openstack.go:65.36,66.26 1 0
github.com/nanovms/ops/lepton/openstack.go:66.26,68.4 1 0
github.com/nanovms/ops/lepton/openstack.go:74.76,78.2 1 0
github.com/nanovms/ops/lepton/vultr_store.go:14.81,18.37 3 0
github.com/nanovms/ops/lepton/vultr_store.go:23.2,28.16 4 0
github.com/nanovms/ops/lepton/vultr_store.go:33.2,37.16 4 0
github.com/nanovms/ops/lepton/vultr_store.go:42.2,42.30 1 0
github.com/nanovms/ops/lepton/vultr_store.go:18.37,21.3 2 0
github.com/nanovms/ops/lepton/vultr_store.go:28.16,31.3 2 0
github.com/nanovms/ops/lepton/vultr_store.go:37.16,40.3 2 0
github.com/nanovms/ops/lepton/vultr_store.go:46.71,52.16 4 0
github.com/nanovms/ops/lepton/vultr_store.go:55.2,65.16 7 0
github.com/nanovms/ops/lepton/vultr_store.go:70.2,71.16 2 0
github.com/nanovms/ops/lepton/vultr_store.go:76.2,77.16 2 0
github.com/nanovms/ops/lepton/vultr_store.go:82.2,86.12 3 0
github.com/nanovms/ops/lepton/vultr_store.go:52.16,54.3 1 0
github.com/nanovms/ops/lepton/vultr_store.go:65.16,68.3 2 0
github.com/nanovms/ops/lepton/vultr_store.go:71.16,74.3 2 0
github.com/nanovms/ops/lepton/vultr_store.go:77.16,80.3 2 0
github.com/nanovms/ops/lepton/vultr_store.go:90.70,92.2 1 0
github.com/nanovms/ops/lepton/gcp_image.go:19.59,22.16 3 0
github.com/nanovms/ops/lepton/gcp_image.go:26.2,26.30 1 0
github.com/nanovms/ops/lepton/gcp_image.go:22.16,24.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:29.54,31.2 1 0
github.com/nanovms/ops/lepton/gcp_image.go:34.63,38.45 3 0
github.com/nanovms/ops/lepton/gcp_image.go:44.2,45.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:49.2,53.16 4 0
github.com/nanovms/ops/lepton/gcp_image.go:56.2,56.22 1 0
github.com/nanovms/ops/lepton/gcp_image.go:38.45,39.44 1 0
github.com/nanovms/ops/lepton/gcp_image.go:39.44,41.4 1 0
github.com/nanovms/ops/lepton/gcp_image.go:45.16,47.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:53.16,55.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:60.86,63.16 3 0
github.com/nanovms/ops/lepton/gcp_image.go:66.2,66.30 1 0
github.com/nanovms/ops/lepton/gcp_image.go:63.16,65.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:71.68,73.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:77.2,92.16 6 0
github.com/nanovms/ops/lepton/gcp_image.go:95.2,97.16 3 0
github.com/nanovms/ops/lepton/gcp_image.go:100.2,101.12 2 0
github.com/nanovms/ops/lepton/gcp_image.go:73.16,75.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:92.16,94.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:97.16,99.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:105.64,108.16 3 0
github.com/nanovms/ops/lepton/gcp_image.go:111.2,112.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:115.2,116.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:120.2,123.63 3 0
github.com/nanovms/ops/lepton/gcp_image.go:140.2,140.20 1 0
github.com/nanovms/ops/lepton/gcp_image.go:108.16,110.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:112.16,114.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:116.16,118.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:123.63,124.36 1 0
github.com/nanovms/ops/lepton/gcp_image.go:137.3,137.13 1 0
github.com/nanovms/ops/lepton/gcp_image.go:124.36,125.64 1 0
github.com/nanovms/ops/lepton/gcp_image.go:125.64,135.5 3 0
github.com/nanovms/ops/lepton/gcp_image.go:145.49,147.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:151.2,159.31 5 0
github.com/nanovms/ops/lepton/gcp_image.go:167.2,168.12 2 0
github.com/nanovms/ops/lepton/gcp_image.go:147.16,149.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:159.31,165.3 5 0
github.com/nanovms/ops/lepton/gcp_image.go:172.68,175.16 3 0
github.com/nanovms/ops/lepton/gcp_image.go:178.2,179.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:182.2,183.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:186.2,187.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:190.2,191.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:194.2,195.12 2 0
github.com/nanovms/ops/lepton/gcp_image.go:175.16,177.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:179.16,181.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:183.16,185.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:187.16,189.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:191.16,193.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:199.81,202.2 2 0
github.com/nanovms/ops/lepton/gcp_image.go:204.58,206.16 2 0
github.com/nanovms/ops/lepton/gcp_image.go:209.2,213.29 3 0
github.com/nanovms/ops/lepton/gcp_image.go:244.2,244.35 1 0
github.com/nanovms/ops/lepton/gcp_image.go:247.2,247.36 1 0
github.com/nanovms/ops/lepton/gcp_image.go:250.2,250.35 1 0
github.com/nanovms/ops/lepton/gcp_image.go:253.2,253.12 1 0
github.com/nanovms/ops/lepton/gcp_image.go:206.16,208.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:213.29,215.17 2 0
github.com/nanovms/ops/lepton/gcp_image.go:220.3,225.18 1 0
github.com/nanovms/ops/lepton/gcp_image.go:229.3,230.17 2 0
github.com/nanovms/ops/lepton/gcp_image.go:235.3,235.59 1 0
github.com/nanovms/ops/lepton/gcp_image.go:238.3,238.35 1 0
github.com/nanovms/ops/lepton/gcp_image.go:215.17,217.4 1 0
github.com/nanovms/ops/lepton/gcp_image.go:225.18,227.4 1 0
github.com/nanovms/ops/lepton/gcp_image.go:230.17,232.4 1 0
github.com/nanovms/ops/lepton/gcp_image.go:235.59,237.4 1 0
github.com/nanovms/ops/lepton/gcp_image.go:238.35,240.4 1 0
github.com/nanovms/ops/lepton/gcp_image.go:244.35,246.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:247.36,249.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:250.35,252.3 1 0
github.com/nanovms/ops/lepton/gcp_image.go:257.83,259.2 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:16.53,18.16 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:21.2,22.16 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:25.2,25.17 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:18.16,20.3 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:22.16,24.3 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:29.46,30.36 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:36.2,36.14 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:30.36,31.53 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:31.53,33.4 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:40.42,42.34 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:45.2,45.13 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:42.34,44.3 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:50.70,53.16 3 1
github.com/nanovms/ops/lepton/ldd_linux.go:58.2,59.16 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:62.2,62.12 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:67.2,67.41 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:72.2,77.44 4 1
github.com/nanovms/ops/lepton/ldd_linux.go:128.2,128.18 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:53.16,55.3 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:59.16,61.3 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:62.12,65.3 2 0
github.com/nanovms/ops/lepton/ldd_linux.go:67.41,69.3 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:77.44,86.17 8 1
github.com/nanovms/ops/lepton/ldd_linux.go:90.3,91.22 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:111.3,111.28 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:123.3,124.36 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:86.17,88.4 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:91.22,93.51 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:96.4,97.41 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:100.4,101.39 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:104.4,104.43 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:107.4,108.51 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:93.51,94.13 1 1
github.com/nanovms/ops/lepton/ldd_linux.go:97.41,98.13 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:101.39,103.5 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:104.43,106.5 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:111.28,113.31 2 0
github.com/nanovms/ops/lepton/ldd_linux.go:119.4,120.38 2 0
github.com/nanovms/ops/lepton/ldd_linux.go:113.31,115.32 2 0
github.com/nanovms/ops/lepton/ldd_linux.go:115.32,117.6 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:124.36,126.4 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:132.39,134.16 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:140.2,141.18 2 1
github.com/nanovms/ops/lepton/ldd_linux.go:134.16,135.56 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:138.3,138.20 1 0
github.com/nanovms/ops/lepton/ldd_linux.go:135.56,137.4 1 0
github.com/nanovms/ops/lepton/config.go:222.29,224.21 2 0
github.com/nanovms/ops/lepton/config.go:232.2,232.35 1 0
github.com/nanovms/ops/lepton/config.go:224.21,227.3 2 0
github.com/nanovms/ops/lepton/config.go:227.8,231.3 3 0
github.com/nanovms/ops/lepton/config.go:236.74,238.2 1 0
github.com/nanovms/ops/lepton/config.go:241.26,246.2 4 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:20.75,22.16 2 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:26.2,36.12 8 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:22.16,24.3 1 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:40.71,43.16 3 1
github.com/nanovms/ops/lepton/digital_ocean_image.go:46.2,47.31 2 1
github.com/nanovms/ops/lepton/digital_ocean_image.go:53.2,53.20 1 1
github.com/nanovms/ops/lepton/digital_ocean_image.go:43.16,45.3 1 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:47.31,52.3 4 1
github.com/nanovms/ops/lepton/digital_ocean_image.go:57.56,59.16 2 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:62.2,65.31 4 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:72.2,73.12 2 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:59.16,61.3 1 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:65.31,71.3 5 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:77.75,79.2 1 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:82.88,85.2 2 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:88.90,90.2 1 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:93.92,95.2 1 0
github.com/nanovms/ops/lepton/digital_ocean_image.go:98.70,101.2 2 0
github.com/nanovms/ops/lepton/gcp_dns.go:12.91,15.16 3 0
github.com/nanovms/ops/lepton/gcp_dns.go:19.2,20.39 2 0
github.com/nanovms/ops/lepton/gcp_dns.go:28.2,28.17 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:41.2,41.22 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:15.16,17.3 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:20.39,21.31 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:21.31,24.9 3 0
github.com/nanovms/ops/lepton/gcp_dns.go:28.17,36.17 3 0
github.com/nanovms/ops/lepton/gcp_dns.go:36.17,38.4 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:45.99,47.16 2 0
github.com/nanovms/ops/lepton/gcp_dns.go:51.2,51.48 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:62.2,62.12 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:47.16,49.3 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:51.48,52.54 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:52.54,56.18 2 0
github.com/nanovms/ops/lepton/gcp_dns.go:56.18,58.5 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:66.91,77.16 3 0
github.com/nanovms/ops/lepton/gcp_dns.go:80.2,80.12 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:77.16,79.3 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:83.56,86.16 3 0
github.com/nanovms/ops/lepton/gcp_dns.go:90.2,91.16 2 0
github.com/nanovms/ops/lepton/gcp_dns.go:95.2,95.24 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:86.16,88.3 1 0
github.com/nanovms/ops/lepton/gcp_dns.go:91.16,93.3 1 0
github.com/nanovms/ops/lepton/onprem.go:7.59,9.2 1 0
github.com/nanovms/ops/lepton/onprem.go:12.39,14.2 1 0
github.com/nanovms/ops/lepton/syswrap_linux.go:8.29,10.2 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:16.84,18.2 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:21.60,24.16 3 0
github.com/nanovms/ops/lepton/vsphere_image.go:28.2,28.30 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:24.16,26.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:32.87,35.16 3 0
github.com/nanovms/ops/lepton/vsphere_image.go:38.2,38.30 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:35.16,37.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:41.73,43.2 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:50.69,52.16 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:56.2,66.16 8 0
github.com/nanovms/ops/lepton/vsphere_image.go:71.2,76.16 5 0
github.com/nanovms/ops/lepton/vsphere_image.go:81.2,85.12 3 0
github.com/nanovms/ops/lepton/vsphere_image.go:52.16,54.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:66.16,69.3 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:76.16,79.3 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:89.65,94.16 4 0
github.com/nanovms/ops/lepton/vsphere_image.go:99.2,100.16 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:104.2,111.16 4 0
github.com/nanovms/ops/lepton/vsphere_image.go:115.2,116.16 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:120.2,120.33 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:137.2,137.21 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:94.16,97.3 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:100.16,102.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:111.16,113.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:116.16,118.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:121.47,123.33 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:133.54,134.32 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:123.33,124.34 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:124.34,125.39 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:128.5,130.7 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:125.39,126.14 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:144.50,146.16 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:150.2,158.31 5 0
github.com/nanovms/ops/lepton/vsphere_image.go:166.2,168.12 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:146.16,148.3 1 0
github.com/nanovms/ops/lepton/vsphere_image.go:158.31,164.3 5 0
github.com/nanovms/ops/lepton/vsphere_image.go:172.69,175.2 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:178.82,181.2 2 0
github.com/nanovms/ops/lepton/vsphere_image.go:184.64,187.2 2 0
github.com/nanovms/ops/lepton/aws_volume.go:13.53,13.105 1 0
github.com/nanovms/ops/lepton/aws_volume.go:17.98,24.16 4 0
github.com/nanovms/ops/lepton/aws_volume.go:28.2,31.16 3 0
github.com/nanovms/ops/lepton/aws_volume.go:35.2,51.16 5 0
github.com/nanovms/ops/lepton/aws_volume.go:55.2,56.16 2 0
github.com/nanovms/ops/lepton/aws_volume.go:61.2,62.16 2 0
github.com/nanovms/ops/lepton/aws_volume.go:67.2,81.16 4 0
github.com/nanovms/ops/lepton/aws_volume.go:85.2,85.17 1 0
github.com/nanovms/ops/lepton/aws_volume.go:24.16,26.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:31.16,33.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:51.16,53.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:56.16,58.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:62.16,64.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:81.16,83.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:89.67,94.16 4 0
github.com/nanovms/ops/lepton/aws_volume.go:98.2,98.40 1 0
github.com/nanovms/ops/lepton/aws_volume.go:125.2,125.18 1 0
github.com/nanovms/ops/lepton/aws_volume.go:94.16,96.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:98.40,102.35 3 0
github.com/nanovms/ops/lepton/aws_volume.go:108.3,108.42 1 0
github.com/nanovms/ops/lepton/aws_volume.go:112.3,122.29 2 0
github.com/nanovms/ops/lepton/aws_volume.go:102.35,103.26 1 0
github.com/nanovms/ops/lepton/aws_volume.go:103.26,105.5 1 0
github.com/nanovms/ops/lepton/aws_volume.go:108.42,110.4 1 0
github.com/nanovms/ops/lepton/aws_volume.go:129.61,134.16 3 0
github.com/nanovms/ops/lepton/aws_volume.go:138.2,138.12 1 0
github.com/nanovms/ops/lepton/aws_volume.go:134.16,136.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:142.75,149.16 3 0
github.com/nanovms/ops/lepton/aws_volume.go:153.2,153.12 1 0
github.com/nanovms/ops/lepton/aws_volume.go:149.16,151.3 1 0
github.com/nanovms/ops/lepton/aws_volume.go:157.68,164.16 3 0
github.com/nanovms/ops/lepton/aws_volume.go:168.2,168.12 1 0
github.com/nanovms/ops/lepton/aws_volume.go:164.16,166.3 1 0
github.com/nanovms/ops/lepton/azure_dns.go:11.90,18.16 6 0
github.com/nanovms/ops/lepton/azure_dns.go:22.2,23.21 2 0
github.com/nanovms/ops/lepton/azure_dns.go:36.2,36.21 1 0
github.com/nanovms/ops/lepton/azure_dns.go:18.16,20.3 1 0
github.com/nanovms/ops/lepton/azure_dns.go:23.21,31.17 4 0
github.com/nanovms/ops/lepton/azure_dns.go:31.17,33.4 1 0
github.com/nanovms/ops/lepton/azure_dns.go:40.98,42.2 1 0
github.com/nanovms/ops/lepton/azure_dns.go:45.90,51.44 4 0
github.com/nanovms/ops/lepton/azure_dns.go:55.2,68.16 4 0
github.com/nanovms/ops/lepton/azure_dns.go:72.2,72.12 1 0
github.com/nanovms/ops/lepton/azure_dns.go:51.44,53.3 1 0
github.com/nanovms/ops/lepton/azure_dns.go:68.16,70.3 1 0
github.com/nanovms/ops/lepton/vultr_volume.go:4.100,7.2 2 0
github.com/nanovms/ops/lepton/vultr_volume.go:10.69,12.2 1 0
github.com/nanovms/ops/lepton/vultr_volume.go:15.63,17.2 1 0
github.com/nanovms/ops/lepton/vultr_volume.go:20.77,22.2 1 0
github.com/nanovms/ops/lepton/vultr_volume.go:25.70,27.2 1 0
github.com/nanovms/ops/lepton/download.go:21.47,26.2 2 0
github.com/nanovms/ops/lepton/download.go:28.54,31.2 2 0
github.com/nanovms/ops/lepton/download.go:34.33,36.2 1 0
github.com/nanovms/ops/lepton/download.go:39.34,42.2 2 0
github.com/nanovms/ops/lepton/mkfs.go:25.53,34.2 2 1
github.com/nanovms/ops/lepton/mkfs.go:37.38,39.20 2 1
github.com/nanovms/ops/lepton/mkfs.go:39.20,41.3 1 1
github.com/nanovms/ops/lepton/mkfs.go:45.44,47.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:50.54,52.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:55.56,57.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:60.44,62.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:65.56,67.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:70.46,72.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:75.47,77.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:80.39,81.22 1 1
github.com/nanovms/ops/lepton/mkfs.go:85.2,89.12 3 1
github.com/nanovms/ops/lepton/mkfs.go:81.22,83.3 1 0
github.com/nanovms/ops/lepton/mkfs.go:93.62,94.22 1 0
github.com/nanovms/ops/lepton/mkfs.go:98.2,98.30 1 0
github.com/nanovms/ops/lepton/mkfs.go:94.22,96.3 1 0
github.com/nanovms/ops/lepton/mkfs.go:102.42,104.2 1 0
github.com/nanovms/ops/lepton/mkfs.go:107.42,109.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:112.40,114.2 1 1
github.com/nanovms/ops/lepton/mkfs.go:117.36,121.27 4 1
github.com/nanovms/ops/lepton/mkfs.go:126.2,126.32 1 1
github.com/nanovms/ops/lepton/mkfs.go:121.27,122.34 1 1
github.com/nanovms/ops/lepton/mkfs.go:122.34,124.4 1 1
github.com/nanovms/ops/lepton/openstack_image.go:17.86,19.2 1 0
github.com/nanovms/ops/lepton/openstack_image.go:22.62,25.16 3 0
github.com/nanovms/ops/lepton/openstack_image.go:29.2,29.30 1 0
github.com/nanovms/ops/lepton/openstack_image.go:25.16,27.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:33.89,36.16 3 0
github.com/nanovms/ops/lepton/openstack_image.go:39.2,39.30 1 0
github.com/nanovms/ops/lepton/openstack_image.go:36.16,38.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:42.67,47.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:51.2,56.16 3 0
github.com/nanovms/ops/lepton/openstack_image.go:60.2,61.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:69.2,69.24 1 0
github.com/nanovms/ops/lepton/openstack_image.go:73.2,73.36 1 0
github.com/nanovms/ops/lepton/openstack_image.go:47.16,49.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:56.16,57.13 1 0
github.com/nanovms/ops/lepton/openstack_image.go:61.16,62.13 1 0
github.com/nanovms/ops/lepton/openstack_image.go:69.24,71.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:76.75,80.2 1 0
github.com/nanovms/ops/lepton/openstack_image.go:82.113,94.2 3 0
github.com/nanovms/ops/lepton/openstack_image.go:96.114,98.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:101.2,103.72 2 0
github.com/nanovms/ops/lepton/openstack_image.go:98.16,100.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:107.71,116.16 6 0
github.com/nanovms/ops/lepton/openstack_image.go:120.2,121.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:125.2,127.16 3 0
github.com/nanovms/ops/lepton/openstack_image.go:131.2,131.12 1 0
github.com/nanovms/ops/lepton/openstack_image.go:116.16,118.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:121.16,123.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:127.16,129.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:135.67,141.16 3 0
github.com/nanovms/ops/lepton/openstack_image.go:145.2,150.16 3 0
github.com/nanovms/ops/lepton/openstack_image.go:154.2,155.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:159.2,159.34 1 0
github.com/nanovms/ops/lepton/openstack_image.go:170.2,170.21 1 0
github.com/nanovms/ops/lepton/openstack_image.go:141.16,143.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:150.16,151.13 1 0
github.com/nanovms/ops/lepton/openstack_image.go:155.16,157.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:159.34,168.3 2 0
github.com/nanovms/ops/lepton/openstack_image.go:174.52,177.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:181.2,189.32 5 0
github.com/nanovms/ops/lepton/openstack_image.go:199.2,201.12 2 0
github.com/nanovms/ops/lepton/openstack_image.go:177.16,179.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:189.32,197.3 5 0
github.com/nanovms/ops/lepton/openstack_image.go:204.96,206.2 1 0
github.com/nanovms/ops/lepton/openstack_image.go:209.71,211.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:216.2,217.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:221.2,222.16 2 0
github.com/nanovms/ops/lepton/openstack_image.go:227.2,227.12 1 0
github.com/nanovms/ops/lepton/openstack_image.go:211.16,214.3 2 0
github.com/nanovms/ops/lepton/openstack_image.go:217.16,219.3 1 0
github.com/nanovms/ops/lepton/openstack_image.go:222.16,225.3 2 0
github.com/nanovms/ops/lepton/openstack_image.go:231.84,234.2 2 0
github.com/nanovms/ops/lepton/openstack_image.go:237.66,240.2 2 0
github.com/nanovms/ops/lepton/aws.go:23.33,29.16 4 0
github.com/nanovms/ops/lepton/aws.go:33.2,36.16 3 0
github.com/nanovms/ops/lepton/aws.go:40.2,40.27 1 0
github.com/nanovms/ops/lepton/aws.go:44.2,44.8 1 0
github.com/nanovms/ops/lepton/aws.go:29.16,31.3 1 0
github.com/nanovms/ops/lepton/aws.go:36.16,38.3 1 0
github.com/nanovms/ops/lepton/aws.go:40.27,42.3 1 0
github.com/nanovms/ops/lepton/aws.go:48.56,51.23 2 0
github.com/nanovms/ops/lepton/aws.go:55.2,56.16 2 0
github.com/nanovms/ops/lepton/aws.go:60.2,65.16 2 0
github.com/nanovms/ops/lepton/aws.go:70.2,75.12 5 0
github.com/nanovms/ops/lepton/aws.go:51.23,53.3 1 0
github.com/nanovms/ops/lepton/aws.go:56.16,58.3 1 0
github.com/nanovms/ops/lepton/aws.go:65.16,67.3 1 0
github.com/nanovms/ops/lepton/aws.go:79.78,84.33 4 0
github.com/nanovms/ops/lepton/aws.go:92.2,92.20 1 0
github.com/nanovms/ops/lepton/aws.go:99.2,104.19 2 0
github.com/nanovms/ops/lepton/aws.go:84.33,86.24 2 0
github.com/nanovms/ops/lepton/aws.go:86.24,89.4 2 0
github.com/nanovms/ops/lepton/aws.go:92.20,97.3 1 0
github.com/nanovms/ops/lepton/aws.go:107.52,108.27 1 0
github.com/nanovms/ops/lepton/aws.go:114.2,114.12 1 0
github.com/nanovms/ops/lepton/aws.go:108.27,109.25 1 0
github.com/nanovms/ops/lepton/aws.go:109.25,111.4 1 0
github.com/nanovms/ops/lepton/aws.go:118.80,125.25 4 0
github.com/nanovms/ops/lepton/aws.go:129.2,129.27 1 0
github.com/nanovms/ops/lepton/aws.go:125.25,127.3 1 0
github.com/nanovms/ops/lepton/aws.go:133.36,135.2 1 0
github.com/nanovms/ops/lepton/aws_store.go:19.66,28.16 5 0
github.com/nanovms/ops/lepton/aws_store.go:31.2,36.16 3 0
github.com/nanovms/ops/lepton/aws_store.go:40.2,49.16 5 0
github.com/nanovms/ops/lepton/aws_store.go:53.2,55.12 2 0
github.com/nanovms/ops/lepton/aws_store.go:28.16,30.3 1 0
github.com/nanovms/ops/lepton/aws_store.go:36.16,38.3 1 0
github.com/nanovms/ops/lepton/aws_store.go:49.16,51.3 1 0
github.com/nanovms/ops/lepton/aws_store.go:59.65,66.16 4 0
github.com/nanovms/ops/lepton/aws_store.go:69.2,77.16 4 0
github.com/nanovms/ops/lepton/aws_store.go:89.2,89.12 1 0
github.com/nanovms/ops/lepton/aws_store.go:66.16,68.3 1 0
github.com/nanovms/ops/lepton/aws_store.go:77.16,78.41 1 0
github.com/nanovms/ops/lepton/aws_store.go:86.3,86.13 1 0
github.com/nanovms/ops/lepton/aws_store.go:78.41,79.23 1 0
github.com/nanovms/ops/lepton/aws_store.go:80.12,81.30 1 0
github.com/nanovms/ops/lepton/aws_store.go:83.9,85.4 1 0
github.com/nanovms/ops/lepton/utils.go:11.33,14.2 2 0
github.com/nanovms/ops/lepton/utils.go:16.56,18.2 1 0
github.com/nanovms/ops/lepton/utils.go:24.39,25.9 1 0
github.com/nanovms/ops/lepton/utils.go:31.2,32.33 2 0
github.com/nanovms/ops/lepton/utils.go:60.2,60.9 1 0
github.com/nanovms/ops/lepton/utils.go:72.2,72.12 1 0
github.com/nanovms/ops/lepton/utils.go:26.22,27.37 1 0
github.com/nanovms/ops/lepton/utils.go:28.23,29.78 1 0
github.com/nanovms/ops/lepton/utils.go:32.33,34.15 2 0
github.com/nanovms/ops/lepton/utils.go:50.3,50.90 1 0
github.com/nanovms/ops/lepton/utils.go:34.15,36.11 1 0
github.com/nanovms/ops/lepton/utils.go:46.4,47.12 2 0
github.com/nanovms/ops/lepton/utils.go:37.16,38.108 1 0
github.com/nanovms/ops/lepton/utils.go:39.18,40.98 1 0
github.com/nanovms/ops/lepton/utils.go:41.24,42.92 1 0
github.com/nanovms/ops/lepton/utils.go:43.26,44.90 1 0
github.com/nanovms/ops/lepton/utils.go:50.90,53.27 2 0
github.com/nanovms/ops/lepton/utils.go:56.4,56.74 1 0
github.com/nanovms/ops/lepton/utils.go:53.27,55.5 1 0
github.com/nanovms/ops/lepton/utils.go:61.22,62.88 1 0
github.com/nanovms/ops/lepton/utils.go:63.24,64.114 1 0
github.com/nanovms/ops/lepton/utils.go:65.22,66.100 1 0
github.com/nanovms/ops/lepton/utils.go:67.32,68.98 1 0
github.com/nanovms/ops/lepton/utils.go:69.40,70.99 1 0
github.com/nanovms/ops/lepton/utils.go:76.44,78.23 2 0
github.com/nanovms/ops/lepton/utils.go:85.2,85.16 1 0
github.com/nanovms/ops/lepton/utils.go:78.23,80.17 2 0
github.com/nanovms/ops/lepton/utils.go:83.3,83.21 1 0
github.com/nanovms/ops/lepton/utils.go:80.17,82.4 1 0
github.com/nanovms/ops/lepton/vsphere.go:28.60,30.16 2 0
github.com/nanovms/ops/lepton/vsphere.go:34.2,40.14 6 0
github.com/nanovms/ops/lepton/vsphere.go:44.2,45.14 2 0
github.com/nanovms/ops/lepton/vsphere.go:49.2,50.14 2 0
github.com/nanovms/ops/lepton/vsphere.go:55.2,56.14 2 0
github.com/nanovms/ops/lepton/vsphere.go:60.2,64.16 5 0
github.com/nanovms/ops/lepton/vsphere.go:68.2,75.16 5 0
github.com/nanovms/ops/lepton/vsphere.go:79.2,79.12 1 0
github.com/nanovms/ops/lepton/vsphere.go:30.16,32.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:40.14,42.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:45.14,47.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:50.14,52.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:56.14,58.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:64.16,66.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:75.16,77.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:82.54,85.14 3 1
github.com/nanovms/ops/lepton/vsphere.go:89.2,89.35 1 1
github.com/nanovms/ops/lepton/vsphere.go:94.2,95.16 2 1
github.com/nanovms/ops/lepton/vsphere.go:100.2,102.32 3 1
github.com/nanovms/ops/lepton/vsphere.go:106.2,106.14 1 1
github.com/nanovms/ops/lepton/vsphere.go:109.2,109.14 1 1
github.com/nanovms/ops/lepton/vsphere.go:112.2,113.8 2 1
github.com/nanovms/ops/lepton/vsphere.go:118.2,118.14 1 1
github.com/nanovms/ops/lepton/vsphere.go:122.2,124.15 3 1
github.com/nanovms/ops/lepton/vsphere.go:85.14,87.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:89.35,91.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:91.8,93.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:95.16,97.3 1 0
github.com/nanovms/ops/lepton/vsphere.go:102.32,104.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:106.14,108.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:109.14,111.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:113.8,115.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:115.8,117.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:118.14,120.3 1 1
github.com/nanovms/ops/lepton/vsphere.go:128.40,130.2 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:17.52,43.16 14 0
github.com/nanovms/ops/lepton/vultr_instance.go:46.2,51.12 4 0
github.com/nanovms/ops/lepton/vultr_instance.go:43.16,44.13 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:55.82,57.2 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:61.69,63.2 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:66.51,70.16 3 0
github.com/nanovms/ops/lepton/vultr_instance.go:74.2,80.16 5 0
github.com/nanovms/ops/lepton/vultr_instance.go:85.2,86.16 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:91.2,94.16 3 0
github.com/nanovms/ops/lepton/vultr_instance.go:98.2,108.29 5 0
github.com/nanovms/ops/lepton/vultr_instance.go:118.2,120.12 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:70.16,73.3 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:80.16,83.3 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:86.16,89.3 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:94.16,96.3 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:108.29,116.3 7 0
github.com/nanovms/ops/lepton/vultr_instance.go:124.71,138.16 10 0
github.com/nanovms/ops/lepton/vultr_instance.go:141.2,145.12 4 0
github.com/nanovms/ops/lepton/vultr_instance.go:138.16,139.13 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:149.70,163.16 10 0
github.com/nanovms/ops/lepton/vultr_instance.go:166.2,170.12 4 0
github.com/nanovms/ops/lepton/vultr_instance.go:163.16,164.13 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:174.69,188.16 10 0
github.com/nanovms/ops/lepton/vultr_instance.go:191.2,195.12 4 0
github.com/nanovms/ops/lepton/vultr_instance.go:188.16,189.13 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:199.88,201.16 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:204.2,205.12 2 0
github.com/nanovms/ops/lepton/vultr_instance.go:201.16,203.3 1 0
github.com/nanovms/ops/lepton/vultr_instance.go:209.84,211.2 1 0
github.com/nanovms/ops/lepton/gcp_network.go:12.128,19.16 3 0
github.com/nanovms/ops/lepton/gcp_network.go:23.2,24.16 2 0
github.com/nanovms/ops/lepton/gcp_network.go:28.2,30.8 2 0
github.com/nanovms/ops/lepton/gcp_network.go:19.16,21.3 1 0
github.com/nanovms/ops/lepton/gcp_network.go:24.16,26.3 1 0
github.com/nanovms/ops/lepton/gcp_network.go:34.125,38.2 2 0
github.com/nanovms/ops/lepton/gcp_network.go:40.135,44.61 3 0
github.com/nanovms/ops/lepton/gcp_network.go:61.2,61.8 1 0
github.com/nanovms/ops/lepton/gcp_network.go:44.61,49.17 4 0
github.com/nanovms/ops/lepton/gcp_network.go:54.3,54.33 1 0
github.com/nanovms/ops/lepton/gcp_network.go:49.17,53.4 3 0
github.com/nanovms/ops/lepton/gcp_network.go:56.8,56.23 1 0
github.com/nanovms/ops/lepton/gcp_network.go:56.23,59.3 2 0
github.com/nanovms/ops/lepton/gcp_network.go:67.171,76.16 3 0
github.com/nanovms/ops/lepton/gcp_network.go:80.2,81.16 2 0
github.com/nanovms/ops/lepton/gcp_network.go:85.2,87.8 2 0
github.com/nanovms/ops/lepton/gcp_network.go:76.16,78.3 1 0
github.com/nanovms/ops/lepton/gcp_network.go:81.16,83.3 1 0
github.com/nanovms/ops/lepton/gcp_network.go:91.157,94.41 2 0
github.com/nanovms/ops/lepton/gcp_network.go:99.2,99.8 1 0
github.com/nanovms/ops/lepton/gcp_network.go:94.41,97.3 2 0
github.com/nanovms/ops/lepton/gcp_network.go:103.117,110.19 4 0
github.com/nanovms/ops/lepton/gcp_network.go:157.2,157.8 1 0
github.com/nanovms/ops/lepton/gcp_network.go:110.19,112.17 2 0
github.com/nanovms/ops/lepton/gcp_network.go:116.3,119.23 3 0
github.com/nanovms/ops/lepton/gcp_network.go:112.17,114.4 1 0
github.com/nanovms/ops/lepton/gcp_network.go:119.23,124.63 4 0
github.com/nanovms/ops/lepton/gcp_network.go:133.4,137.6 1 0
github.com/nanovms/ops/lepton/gcp_network.go:124.63,127.5 2 0
github.com/nanovms/ops/lepton/gcp_network.go:127.10,127.25 1 0
github.com/nanovms/ops/lepton/gcp_network.go:127.25,131.5 3 0
github.com/nanovms/ops/lepton/gcp_network.go:138.9,143.4 1 0
github.com/nanovms/ops/lepton/gcp_network.go:144.8,155.3 1 0
github.com/nanovms/ops/lepton/gcp_network.go:160.99,174.2 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:17.53,21.23 3 0
github.com/nanovms/ops/lepton/onprem_instance.go:27.2,29.24 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:33.2,44.12 8 0
github.com/nanovms/ops/lepton/onprem_instance.go:21.23,25.3 3 0
github.com/nanovms/ops/lepton/onprem_instance.go:29.24,31.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:48.83,50.16 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:54.2,54.30 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:60.2,60.65 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:50.16,52.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:54.30,55.20 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:55.20,57.4 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:64.84,69.16 4 0
github.com/nanovms/ops/lepton/onprem_instance.go:73.2,73.26 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:95.2,95.8 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:69.16,71.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:73.26,76.17 3 0
github.com/nanovms/ops/lepton/onprem_instance.go:80.3,81.50 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:85.3,92.5 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:76.17,78.4 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:81.50,83.4 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:99.52,101.16 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:105.2,117.30 5 0
github.com/nanovms/ops/lepton/onprem_instance.go:130.2,132.12 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:101.16,103.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:117.30,128.3 8 0
github.com/nanovms/ops/lepton/onprem_instance.go:137.73,139.2 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:142.72,144.2 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:147.74,150.16 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:157.2,157.14 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:162.2,163.16 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:167.2,170.16 4 0
github.com/nanovms/ops/lepton/onprem_instance.go:174.2,174.12 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:150.16,152.17 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:152.17,154.4 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:157.14,160.3 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:163.16,165.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:170.16,172.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:178.89,180.16 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:183.2,184.12 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:180.16,182.3 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:188.85,191.16 2 0
github.com/nanovms/ops/lepton/onprem_instance.go:196.2,196.26 1 0
github.com/nanovms/ops/lepton/onprem_instance.go:191.16,194.3 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:14.80,23.16 6 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:28.2,32.16 4 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:37.2,37.30 1 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:23.16,26.3 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:32.16,35.3 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:41.70,47.16 4 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:50.2,60.16 7 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:65.2,66.16 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:71.2,72.16 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:77.2,81.12 3 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:47.16,49.3 1 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:60.16,63.3 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:66.16,69.3 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:72.16,75.3 2 0
github.com/nanovms/ops/lepton/digital_ocean_store.go:85.69,87.2 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:19.114,25.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:29.2,31.64 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:72.2,72.24 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:25.16,27.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:31.64,33.17 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:38.3,38.32 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:69.3,69.19 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:33.17,36.4 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:38.32,39.62 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:39.62,44.17 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:54.5,61.19 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:65.5,65.47 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:44.17,45.42 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:45.42,48.23 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:48.23,50.8 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:61.19,63.6 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:76.56,78.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:82.2,85.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:90.2,94.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:98.2,112.46 6 0
github.com/nanovms/ops/lepton/openstack_instance.go:118.2,121.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:125.2,127.43 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:149.2,149.12 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:78.16,80.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:85.16,88.3 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:94.16,96.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:112.46,114.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:114.8,116.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:121.16,123.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:127.43,129.21 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:129.21,134.50 4 0
github.com/nanovms/ops/lepton/openstack_instance.go:139.4,139.36 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:145.4,145.14 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:134.50,136.13 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:139.36,141.19 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:141.19,143.6 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:156.33,164.24 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:168.2,171.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:164.24,166.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:175.86,181.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:185.2,185.25 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:189.2,189.27 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:181.16,183.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:185.25,187.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:193.73,195.2 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:199.55,201.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:205.2,215.38 5 0
github.com/nanovms/ops/lepton/openstack_instance.go:227.2,229.12 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:201.16,203.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:215.38,225.3 7 0
github.com/nanovms/ops/lepton/openstack_instance.go:233.77,241.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:245.2,245.25 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:249.2,249.37 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:262.2,262.12 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:241.16,243.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:245.25,247.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:249.37,250.36 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:250.36,253.21 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:253.21,255.5 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:255.10,257.5 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:266.76,268.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:272.2,273.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:277.2,278.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:282.2,282.12 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:268.16,270.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:273.16,275.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:278.16,280.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:286.75,288.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:292.2,293.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:297.2,298.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:302.2,302.12 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:288.16,290.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:293.16,295.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:298.16,300.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:305.83,309.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:313.2,317.64 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:334.2,334.19 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:338.2,338.49 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:309.16,311.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:317.64,319.17 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:324.3,324.32 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:331.3,331.19 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:319.17,322.4 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:324.32,325.22 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:325.22,328.5 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:334.19,336.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:342.92,344.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:347.2,348.12 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:344.16,346.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:352.88,355.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:359.2,360.16 2 0
github.com/nanovms/ops/lepton/openstack_instance.go:364.2,368.16 3 0
github.com/nanovms/ops/lepton/openstack_instance.go:372.2,372.20 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:355.16,357.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:360.16,362.3 1 0
github.com/nanovms/ops/lepton/openstack_instance.go:368.16,370.3 1 0
github.com/nanovms/ops/lepton/qemu_unix.go:73.34,75.2 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:77.33,79.2 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:81.32,84.22 3 1
github.com/nanovms/ops/lepton/qemu_unix.go:87.2,87.23 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:90.2,90.19 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:93.2,93.20 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:84.22,86.3 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:87.23,89.3 1 1
github.com/nanovms/ops/lepton/qemu_unix.go:90.19,92.3 1 0
github.com/nanovms/ops/lepton/qemu_unix.go:96.34,100.31 2 1