This repository was archived by the owner on Nov 10, 2023. It is now read-only.
File tree 1 file changed +55
-0
lines changed
test/com/facebook/buck/remoteexecution/event/listener
1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,26 @@ public int getCasDownloads() {
51
51
return casDownloads ;
52
52
}
53
53
54
+ @ Override
55
+ public int getCasSmallDownloads () {
56
+ return 0 ;
57
+ }
58
+
59
+ @ Override
60
+ public int getCasLargeDownloads () {
61
+ return 0 ;
62
+ }
63
+
64
+ @ Override
65
+ public long getCasSmallDownloadSizeBytes () {
66
+ return 0 ;
67
+ }
68
+
69
+ @ Override
70
+ public long getCasLargeDownloadSizeBytes () {
71
+ return 0 ;
72
+ }
73
+
54
74
@ Override
55
75
public long getCasDownloadSizeBytes () {
56
76
return casDownladedBytes ;
@@ -61,11 +81,46 @@ public int getCasUploads() {
61
81
return 0 ;
62
82
}
63
83
84
+ @ Override
85
+ public int getCasSmallUploads () {
86
+ return 0 ;
87
+ }
88
+
89
+ @ Override
90
+ public int getCasLargeUploads () {
91
+ return 0 ;
92
+ }
93
+
94
+ @ Override
95
+ public long getCasSmallUploadSizeBytes () {
96
+ return 0 ;
97
+ }
98
+
99
+ @ Override
100
+ public long getCasLargeUploadSizeBytes () {
101
+ return 0 ;
102
+ }
103
+
64
104
@ Override
65
105
public long getCasUploadSizeBytes () {
66
106
return 0 ;
67
107
}
68
108
109
+ @ Override
110
+ public long getCasFindMissingCount () {
111
+ return 0 ;
112
+ }
113
+
114
+ @ Override
115
+ public long getCasFindMissingSmallCount () {
116
+ return 0 ;
117
+ }
118
+
119
+ @ Override
120
+ public long getCasFindMissingLargeCount () {
121
+ return 0 ;
122
+ }
123
+
69
124
@ Override
70
125
public int getTotalRulesBuilt () {
71
126
return 0 ;
You can’t perform that action at this time.
0 commit comments