From 390ce56a83c2cd9e98cb968b21fb356d53e9a95d Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Sun, 29 Mar 2026 22:28:42 -0400 Subject: [PATCH] cleanup: remove artifact .class and .go test files from defects/scala and defects/victoria-metrics --- .../unit/ScalaRefChecksIntersectionTest.class | Bin 2519 -> 0 bytes .../unit/unit/victoria_metrics_0002_test.go | 180 ------------------ 2 files changed, 180 deletions(-) delete mode 100644 defects/scala/unit/unit/ScalaRefChecksIntersectionTest.class delete mode 100644 defects/victoria-metrics/unit/unit/victoria_metrics_0002_test.go diff --git a/defects/scala/unit/unit/ScalaRefChecksIntersectionTest.class b/defects/scala/unit/unit/ScalaRefChecksIntersectionTest.class deleted file mode 100644 index 93a5a82077e1cb67a961e9c245a2eea121968dcf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2519 zcmb_eZBrXn6n<{9$tGb_XiA{b78ZdTYH3Pau}uUDR9Yx+HVAF0wo9_WmSs21ZYb2Z zs_6IwI-{*GAJ9$_&)p;?NbM&x!_B$po_p?jp7RoZ z{(JQY0G)U@02kaM1PLB^87eL*b4pBCjH%er#3eOlGkBlZ49#w5a7UX)Mfe!%bEJqR zQ;M#fRwuis)zpmDYuIYmq6?a7jHs3^BEYc2@s_hSJ=U4cDhvIZWe4DgJAfdzi71y) zf$a?2H(up_rqnEhIH%}2b!d{ID%#uBzr`X^h8?IB5tdMeYKCnaZ}Dd+TqT`m2uDk< z<{>4T&hfhu2~Xfj2A@WeE4E2*Rz(XBIU)BJ^z_nh)QG5+Aft{UwDD5WguQLccWfH0~#3w!%Pf}2{dfUAB2Gv+ ziQY|BmRzuGb(XG~ISwWkPo~V=58A5Qas(DB(1c#fseQpOTm1uj$6W%BA3-10s|qqaVkKl&r5h2uMj)xyhZ>8%HyaH7m34`Sc^Q|nWUiDarz@#f<-i= zy!72X5p*!X1xhL#-tWkM%SFlj5PnE@qJ*bB3iBVN_x zB|Y#E6hk0s=CUcZN8^|4AK%aWc?nSFx=hoy?5vU*Q0-|mZTUcbQ^r#-n;9!EGam?M z8Bh8{#T@kvb(m(xW%{rfliOrA@54O9QO-h7XK%m!+qLVmI-j9hRMRr|H_cP{l?$nZrfFHa0y@B zh5zhrlnuIDg|M(4_m&WD4hwf6tsvyW*rLFe*MBb<#mV5OR!`XT5vn3W*t22fSzliN zqj?288RDLZX9c?$ZlH@xPci(6VBG6&6~kggSiv5KB{b9oln(MCu3)c=8$`Ufu>S_U z%kVFX^yV+i>#K_{62@!3rifh*rgoH*ypMLx2q1Sm~SJF_mIF% zLj4KtKc@lsCE0&PV_=4EA4J(21c9xgLc|VsACWZ#^HTK#h$42cVW)^7+w&JZf5LU2 zsP^$8THvs;z~RzE4sZOA9NtCC*@$o(hvJ@^O0+5+1ya2cZ-LZCE)_@>9Tq(iV)2NJ z2q*Tu%j>^7yiJwx7RNS1K0v$;5^qDq+c5EVnixwGZ=<+~F-+nd7BPXRd#YO0wbFbB>m3b(|ET3uM8o zKVK>PQATo#a+Rj+si>wFs>d{;*3eFvPEdFw6yO<{gg)b-48pyJN= 3.0x, got %.1fx", ratio) - } - t.Logf("PASS: speedup ratio %.1fx >= 3.0x", ratio) -} - -func BenchmarkVictoriaMetrics0002_Linear(b *testing.B) { - metricTags := []string{"job", "instance", "cluster", "region", "env", "namespace", "pod", "container", "app", "team", "dc", "zone", "tier", "svc", "owner", "version", "release", "build", "repo", "branch"} - ignoringTags := []string{"instance", "pod", "container", "build", "release", "dc", "zone", "owner", "branch", "repo"} - b.ResetTimer() - for i := 0; i < b.N; i++ { - _ = simulateRemoveTagsIgnoringLinear(metricTags, ignoringTags) - } -} - -func BenchmarkVictoriaMetrics0002_Map(b *testing.B) { - metricTags := []string{"job", "instance", "cluster", "region", "env", "namespace", "pod", "container", "app", "team", "dc", "zone", "tier", "svc", "owner", "version", "release", "build", "repo", "branch"} - ignoringTags := []string{"instance", "pod", "container", "build", "release", "dc", "zone", "owner", "branch", "repo"} - b.ResetTimer() - for i := 0; i < b.N; i++ { - _ = simulateRemoveTagsIgnoringMap(metricTags, ignoringTags) - } -}