content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
prelude: |\n class Example\n def lazy_set\n @uninitialized ||= 123\n end\n end\n\n objs = 10000000.times.map { Example.new }\nbenchmark:\n vm_ivar_lazy_set: |\n objs.each(&:lazy_set)\nloop_count: 1\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_ivar_lazy_set.yml | vm_ivar_lazy_set.yml | YAML | 205 | 0.85 | 0.166667 | 0 | python-kit | 433 | 2023-09-18T10:25:11.961976 | BSD-3-Clause | false | 2ee80bca0c2464e2053d46522057856a |
prelude: |\n IVARS = 60\n class Record\n def initialize(offset = false)\n @offset = 1 if offset\n @first = 0\n IVARS.times do |i|\n instance_variable_set("@ivar_#{i}", i)\n end\n end\n\n def first\n @first\n end\n\n def lazy_set\n @lazy_set ||= 123\n end\n\n d... | dataset_sample\yaml\ruby_ruby\benchmark\vm_ivar_memoize.yml | vm_ivar_memoize.yml | YAML | 1,441 | 0.95 | 0.082353 | 0 | python-kit | 899 | 2023-12-09T08:16:50.066079 | GPL-3.0 | false | dbc261302ea205594cca534f0db37812 |
prelude: |\n class C\n @a = 1\n def self.a\n _a = @a; _a = @a; _a = @a; _a = @a; _a = @a;\n _a = @a; _a = @a; _a = @a; _a = @a; _a = @a;\n end\n end\nbenchmark:\n vm_ivar_of_class: |\n a = C.a\nloop_count: 30000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_ivar_of_class.yml | vm_ivar_of_class.yml | YAML | 229 | 0.85 | 0.166667 | 0 | python-kit | 807 | 2023-11-22T04:10:17.689794 | Apache-2.0 | false | b058696cf05ceece027b02729971b851 |
prelude: |\n class C\n @a = 1\n def self.a o\n @a = o; @a = o; @a = o; @a = o; @a = o; @a = o;\n end\n end\nbenchmark:\n vm_ivar_of_class_set: |\n a = C.a(nil)\nloop_count: 30000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_ivar_of_class_set.yml | vm_ivar_of_class_set.yml | YAML | 192 | 0.85 | 0.181818 | 0 | python-kit | 963 | 2023-09-06T15:01:29.483027 | GPL-3.0 | false | 6f3809b1e6e77b812ce1c52e3ed42651 |
prelude: |\n class TheClass\n def initialize\n @v0 = 1\n @v1 = 2\n @v3 = 3\n @levar = 1\n end\n\n def set_value_loop\n # 1M\n i = 0\n while i < 1000000\n # 10 times to de-emphasize loop overhead\n @levar = i\n @levar = i\n @levar = i\n @lev... | dataset_sample\yaml\ruby_ruby\benchmark\vm_ivar_set_on_instance.yml | vm_ivar_set_on_instance.yml | YAML | 565 | 0.95 | 0.114286 | 0.0625 | node-utils | 411 | 2024-04-04T17:41:21.119956 | BSD-3-Clause | false | 511f691108457f44fec107fe352f37cb |
prelude: |\n class A\n def set_ivars\n @a = nil\n @b = nil\n @c = nil\n @d = nil\n @e = nil\n end\n end\n class B < A; end\n class C < A; end\n\n b = B.new\n c = C.new\nbenchmark:\n vm_ivar_init_subclass: |\n b.set_ivars\n c.set_ivars\nloop_count: 3000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_ivar_set_subclass.yml | vm_ivar_set_subclass.yml | YAML | 281 | 0.85 | 0.2 | 0 | awesome-app | 687 | 2023-10-31T07:14:43.001717 | MIT | false | d245d21c79c5eb12452b805e0790bf92 |
prelude: |\n a = 'abc'\n b = [1, 2, 3]\nbenchmark:\n vm_length: |\n a.length\n b.length\nloop_count: 30000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_length.yml | vm_length.yml | YAML | 112 | 0.7 | 0 | 0 | vue-tools | 877 | 2024-02-21T01:23:41.850644 | MIT | false | 4f342b7c69eadbb1eb58b75b83ad25a1 |
benchmark:\n vm_lvar_cond_set: |\n a ||= 1\n b ||= 1\n c ||= 1\n d ||= 1\n nil\nloop_count: 30000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_lvar_cond_set.yml | vm_lvar_cond_set.yml | YAML | 110 | 0.7 | 0 | 0 | python-kit | 455 | 2025-04-24T12:39:48.504364 | Apache-2.0 | false | a306404ae2c5d809c4c92b1f7563220b |
# while loop cost is not removed because `i` is used in the script\nbenchmark:\n vm_lvar_init: |\n def m v\n unless v\n # unreachable code\n v1 = v2 = v3 = v4 = v5 = v6 = v7 = v8 = v9 = v10 =\n v11 = v12 = v13 = v14 = v15 = v16 = v17 = v18 = v19 = v20 =\n v21 = v22 = v23 = v24 = v25... | dataset_sample\yaml\ruby_ruby\benchmark\vm_lvar_init.yml | vm_lvar_init.yml | YAML | 581 | 0.95 | 0.142857 | 0.105263 | react-lib | 40 | 2025-03-14T09:07:35.255041 | Apache-2.0 | false | c58c6f463390fc04382549b2d7bd75f3 |
benchmark:\n vm_lvar_set: |\n a = b = c = d = e = f = g = h = j = k = l = m = n = o = p = q = r = 1\nloop_count: 30000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_lvar_set.yml | vm_lvar_set.yml | YAML | 123 | 0.7 | 0 | 0 | vue-tools | 663 | 2024-11-30T16:08:02.283609 | BSD-3-Clause | false | e373a053e3ac6b6ccf025af209114990 |
prelude: |\n def m\n nil\n end\nbenchmark:\n vm_method: |\n m; m; m; m; m; m; m; m;\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_method.yml | vm_method.yml | YAML | 107 | 0.85 | 0.125 | 0 | node-utils | 526 | 2024-02-04T15:09:45.642540 | BSD-3-Clause | false | 9d9e5520c08153685106819e8d51af88 |
prelude: |\n class C\n def method_missing mid\n end\n end\n\n obj = C.new\nbenchmark:\n vm_method_missing: |\n obj.m; obj.m; obj.m; obj.m; obj.m; obj.m; obj.m; obj.m;\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_method_missing.yml | vm_method_missing.yml | YAML | 191 | 0.85 | 0.181818 | 0 | awesome-app | 540 | 2023-12-06T17:22:34.608768 | GPL-3.0 | false | e535281bdcbfc0538ccc27ece9b70401 |
prelude: |\n def f(x=0, y: 0) end\n a = [1]\n ea = []\n kw = {y: 1}\n b = lambda{}\nbenchmark:\n arg_splat: "f(1, *ea)"\n arg_splat_block: "f(1, *ea, &b)"\n splat_kw_splat: "f(*a, **kw)"\n splat_kw_splat_block: "f(*a, **kw, &b)"\n splat_kw: "f(*a, y: 1)"\n splat_kw_block: "f(*a, y: 1, &b)"\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_method_splat_calls.yml | vm_method_splat_calls.yml | YAML | 290 | 0.85 | 0.076923 | 0 | react-lib | 682 | 2023-12-11T02:49:52.464852 | GPL-3.0 | false | bd7f1ab535ec9341005e9304f1a73b69 |
prelude: |\n def named_arg_splat(*a) end\n def named_arg_kw_splat(*a, **kw) end\n def anon_arg_splat(*) end\n def anon_kw_splat(**) end\n def anon_arg_kw_splat(*, **) end\n def anon_fw_to_named(*, **) named_arg_kw_splat(*, **) end\n def fw_to_named(...) named_arg_kw_splat(...) end\n def fw_to_anon_to_named(...)... | dataset_sample\yaml\ruby_ruby\benchmark\vm_method_splat_calls2.yml | vm_method_splat_calls2.yml | YAML | 1,093 | 0.85 | 0.333333 | 0 | react-lib | 43 | 2024-09-08T12:07:06.753275 | GPL-3.0 | false | f8c1d54299f6253868e934523dd11325 |
prelude: |\n def m\n nil\n end\nbenchmark:\n vm_method_with_block: |\n m{}; m{}; m{}; m{}; m{}; m{}; m{}; m{};\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_method_with_block.yml | vm_method_with_block.yml | YAML | 134 | 0.85 | 0.125 | 0 | react-lib | 883 | 2024-07-25T03:49:31.798651 | GPL-3.0 | false | ae6dc7e9e51bdd0a366a705a8ef8cb0e |
benchmark:\n vm_module_ann_const_set: |\n Module.new.const_set(:X, Module.new)\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_module_ann_const_set.yml | vm_module_ann_const_set.yml | YAML | 101 | 0.7 | 0 | 0 | python-kit | 48 | 2025-06-02T04:45:23.247197 | MIT | false | d2327ef73429a00af2ac2cb4a424f222 |
prelude: |\n module M\n end\n $VERBOSE = nil\nbenchmark:\n vm_module_const_set: |\n M.const_set(:X, Module.new)\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_module_const_set.yml | vm_module_const_set.yml | YAML | 133 | 0.7 | 0 | 0 | python-kit | 609 | 2024-07-19T16:41:40.054569 | GPL-3.0 | false | 01d16d985d110930615761a4f35c4ca7 |
prelude: |\n require 'thread'\n\n m = Thread::Mutex.new\nbenchmark:\n vm_mutex: |\n m.synchronize{}\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_mutex.yml | vm_mutex.yml | YAML | 120 | 0.85 | 0 | 0 | vue-tools | 112 | 2023-10-20T11:44:42.524655 | GPL-3.0 | false | 61c0b214a56d7fd130a5bb13f9fd7262 |
prelude: |\n obj1 = Object.new\n obj2 = Object.new\nbenchmark:\n vm_neq: |\n obj1 != obj2\nloop_count: 30000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_neq.yml | vm_neq.yml | YAML | 112 | 0.7 | 0 | 0 | python-kit | 219 | 2024-03-09T21:03:12.370883 | GPL-3.0 | false | ef1eb8223b272a67db025954b07436d2 |
# loop_count is not utilized since `i` is involved in the script\nbenchmark:\n vm_poly_method: |\n class C1\n def m\n 1\n end\n end\n class C2\n def m\n 2\n end\n end\n\n o1 = C1.new\n o2 = C2.new\n\n i = 0\n while i<6_000_000\n o = (i % 2 == 0) ? o1 : o2\... | dataset_sample\yaml\ruby_ruby\benchmark\vm_poly_method.yml | vm_poly_method.yml | YAML | 381 | 0.95 | 0.208333 | 0.045455 | vue-tools | 997 | 2024-06-29T07:26:28.609865 | GPL-3.0 | false | c037839d65184467f284a8324466424f |
# loop_count is not utilized since `i` is involved in the script\nbenchmark:\n vm_poly_method_ov: |\n class C1\n def m\n 1\n end\n end\n class C2\n def m\n 2\n end\n end\n\n o1 = C1.new\n o2 = C2.new\n\n i = 0\n while i<6_000_000\n o = (i % 2 == 0) ? o1 : ... | dataset_sample\yaml\ruby_ruby\benchmark\vm_poly_method_ov.yml | vm_poly_method_ov.yml | YAML | 385 | 0.95 | 0.208333 | 0.090909 | vue-tools | 378 | 2024-05-19T16:31:22.010897 | BSD-3-Clause | false | cb7921973ce6d779ab017b27754fbfcd |
prelude: |\n module AR; end\n class AR::Base\n def create_or_update\n nil\n end\n def save\n create_or_update\n end\n end\n class Foo < AR::Base; end\n class Bar < AR::Base; end\n o1 = Foo.new\n o2 = Bar.new\nbenchmark:\n vm_poly_same_method: |\n o1.save; o2.save;\n o1.save; o2.save;... | dataset_sample\yaml\ruby_ruby\benchmark\vm_poly_same_method.yml | vm_poly_same_method.yml | YAML | 456 | 0.85 | 0.2 | 0 | python-kit | 392 | 2024-06-27T19:34:19.550940 | GPL-3.0 | false | d1ca3d640cd500631e4e0256bfcf5c4f |
# loop_count is not utilized since `i` is involved in the script\nbenchmark:\n vm_poly_singleton: |\n class C1\n def m; 1; end\n end\n\n o1 = C1.new\n o2 = C1.new\n o2.singleton_class\n\n i = 0\n while i<6_000_000 # benchmark loop 2\n o = (i % 2 == 0) ? o1 : o2\n o.m; o.m; o.m; o.m;... | dataset_sample\yaml\ruby_ruby\benchmark\vm_poly_singleton.yml | vm_poly_singleton.yml | YAML | 361 | 0.95 | 0.166667 | 0.0625 | node-utils | 719 | 2024-07-03T08:25:07.322145 | GPL-3.0 | false | c00533842be435d8a94d2502668c0eef |
prelude: |\n def m &b\n b\n end\n\n pr = m{\n a = 1\n }\nbenchmark:\n vm_proc: |\n pr.call\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_proc.yml | vm_proc.yml | YAML | 115 | 0.85 | 0.083333 | 0 | react-lib | 939 | 2024-02-19T01:30:23.387569 | GPL-3.0 | false | 355852360e0b63582989934d95e22671 |
prelude: |\n def rec n\n if n > 0\n rec n-1\n else\n raise\n end\n end\nbenchmark:\n vm_raise1: |\n begin\n rec 1\n rescue\n # ignore\n end\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_raise1.yml | vm_raise1.yml | YAML | 187 | 0.95 | 0.125 | 0.0625 | awesome-app | 55 | 2024-12-03T19:20:22.262986 | BSD-3-Clause | false | 93161e717e9c0fcdde877646f3aa0203 |
prelude: |\n def rec n\n if n > 0\n rec n-1\n else\n raise\n end\n end\nbenchmark:\n vm_raise2: |\n begin\n rec 10\n rescue\n # ignore\n end\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_raise2.yml | vm_raise2.yml | YAML | 188 | 0.95 | 0.125 | 0.0625 | awesome-app | 570 | 2024-10-14T08:47:59.630430 | GPL-3.0 | false | 70b25e30afdd01b77454ea4b700ea037 |
prelude: |\n str = 'xxxhogexxx'\nbenchmark:\n vm_regexp: |\n /hoge/ =~ str\n vm_regexp_invert: |\n str =~ /hoge/\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_regexp.yml | vm_regexp.yml | YAML | 136 | 0.7 | 0 | 0 | awesome-app | 95 | 2025-05-26T10:19:05.675925 | GPL-3.0 | false | 21a37a093de636135a9f98db4a82814b |
prelude: |\n class C\n def m\n end\n end\n\n o = C.new\n m = :m\nbenchmark:\n vm_send: |\n o.__send__ :m\n vm_send_var: |\n o.__send__ m\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_send.yml | vm_send.yml | YAML | 163 | 0.85 | 0.142857 | 0 | awesome-app | 436 | 2024-12-27T13:10:58.894511 | MIT | false | af52669d442c4ad6a628c2912cb587b8 |
prelude: |\n ary = []\n kw = {a: 1}\n empty_kw = {}\n kw_ary = [Hash.ruby2_keywords_hash(a: 1)]\n empty_kw_ary = [Hash.ruby2_keywords_hash({})]\nbenchmark:\n vm_send_cfunc: itself\n vm_send_cfunc_splat: itself(*ary)\n vm_send_cfunc_splat_kw_hash: equal?(*kw_ary)\n vm_send_cfunc_splat_empty_kw_hash: itself(*emp... | dataset_sample\yaml\ruby_ruby\benchmark\vm_send_cfunc.yml | vm_send_cfunc.yml | YAML | 444 | 0.7 | 0 | 0 | node-utils | 716 | 2023-10-14T09:16:20.672908 | BSD-3-Clause | false | 47cd4fa68f10a9bc5db826dfc723b146 |
benchmark:\n vm_string_literal: |\n x = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_string_literal.yml | vm_string_literal.yml | YAML | 128 | 0.7 | 0 | 0 | vue-tools | 458 | 2025-06-30T23:35:52.504199 | MIT | false | 6df56fa0ffec678891593923a1e70970 |
prelude: |\n s = Struct.new(*('a'..'z').map { |x| x.to_sym })\n x = s.new\nbenchmark:\n vm_struct_big_aref_hi: |\n x.z # x[25]\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_big_aref_hi.yml | vm_struct_big_aref_hi.yml | YAML | 148 | 0.8 | 0 | 0 | react-lib | 618 | 2023-10-22T05:40:42.935723 | Apache-2.0 | false | 3eff3db36e2c29e0cad3111a9d8f285a |
prelude: |\n s = Struct.new(*('a'..'z').map { |x| x.to_sym })\n x = s.new\nbenchmark:\n vm_struct_big_aref_lo: |\n x.k # x[10]\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_big_aref_lo.yml | vm_struct_big_aref_lo.yml | YAML | 148 | 0.8 | 0 | 0 | awesome-app | 176 | 2025-03-10T12:06:43.503257 | MIT | false | 3cf50fbd3704e62c044dd12f158feaf3 |
# loop_count is not utilized since `i` is involved in the script\nbenchmark:\n vm_struct_big_aset: |\n s = Struct.new(*('a'..'z').map { |x| x.to_sym })\n x = s.new\n i = 0\n while i<6_000_000\n i += 1\n x.k = i # x[10] = i\n end\nloop_count: 1\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_big_aset.yml | vm_struct_big_aset.yml | YAML | 260 | 0.8 | 0.090909 | 0.090909 | react-lib | 813 | 2025-04-03T00:04:01.462226 | Apache-2.0 | false | 660ee098ee1f13433978d428967256e3 |
prelude: |\n s = Struct.new(*('a'..'z').map { |x| x.to_sym })\n x = s.new\nbenchmark:\n vm_struct_big_href_hi: |\n x[:z]\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_big_href_hi.yml | vm_struct_big_href_hi.yml | YAML | 142 | 0.7 | 0 | 0 | awesome-app | 743 | 2025-03-17T14:38:34.720515 | Apache-2.0 | false | 2701c96dcde8822aba682f0710988bf4 |
prelude: |\n s = Struct.new(*('a'..'z').map { |x| x.to_sym })\n x = s.new\nbenchmark:\n vm_struct_big_href_lo: |\n x[:k]\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_big_href_lo.yml | vm_struct_big_href_lo.yml | YAML | 142 | 0.7 | 0 | 0 | react-lib | 867 | 2024-06-13T09:41:59.206062 | Apache-2.0 | false | f48c17cb336f77f47712e214444520e5 |
# loop_count is not utilized since `i` is involved in the script\nbenchmark:\n vm_struct_big_hset: |\n s = Struct.new(*('a'..'z').map { |x| x.to_sym })\n x = s.new\n i = 0\n while i<6_000_000\n i += 1\n x[:k] = i\n end\nloop_count: 1\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_big_hset.yml | vm_struct_big_hset.yml | YAML | 250 | 0.8 | 0.090909 | 0.090909 | react-lib | 357 | 2023-12-15T09:42:08.334737 | MIT | false | bcd2858491ecee725d51b1cb9ab4394f |
prelude: |\n s = Struct.new(:a, :b, :c)\n x = s.new\nbenchmark:\n vm_struct_small_aref: |\n x.a\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_small_aref.yml | vm_struct_small_aref.yml | YAML | 117 | 0.7 | 0 | 0 | react-lib | 724 | 2024-03-29T02:39:54.590207 | GPL-3.0 | false | 486ba1a88db0d90385967003543561dd |
# loop_count is not utilized since `i` is involved in the script\nbenchmark:\n vm_struct_small_aset: |\n s = Struct.new(:a, :b, :c)\n x = s.new\n i = 0\n while i<6_000_000\n i += 1\n x.a = i\n end\nloop_count: 1\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_small_aset.yml | vm_struct_small_aset.yml | YAML | 228 | 0.8 | 0.090909 | 0.090909 | python-kit | 216 | 2024-01-25T10:49:16.088092 | MIT | false | 21cbd0b684d349a615efce2bd6af95e1 |
prelude: |\n s = Struct.new(:a, :b, :c)\n x = s.new\nbenchmark:\n vm_struct_small_href: |\n x[:a]\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_small_href.yml | vm_struct_small_href.yml | YAML | 119 | 0.7 | 0 | 0 | awesome-app | 211 | 2023-08-12T21:24:20.694977 | GPL-3.0 | false | b70527b888110060c9a5edc7b9d3e3b8 |
prelude: |\n s = Struct.new(:a, :b, :c)\n x = s.new\nbenchmark:\n vm_struct_small_hset: |\n x[:a] = 1\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_struct_small_hset.yml | vm_struct_small_hset.yml | YAML | 123 | 0.7 | 0 | 0 | vue-tools | 692 | 2024-03-31T23:08:34.893419 | Apache-2.0 | false | a01c0ad14600d2deb42f1712b0f1edb6 |
prelude: |\n class C\n def m\n 1\n end\n end\n\n class CC < C\n def m\n super()\n end\n end\n\n obj = CC.new\nbenchmark:\n vm_super: obj.m\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_super.yml | vm_super.yml | YAML | 172 | 0.85 | 0.235294 | 0 | react-lib | 473 | 2023-08-16T17:09:09.507170 | BSD-3-Clause | false | b41c473971285361b9da1bc3c1169aa6 |
prelude: |\n @a = [1].freeze\n @ea = [].freeze\n @kw = {y: 1}.freeze\n @b = lambda{}\n extend(Module.new{def arg_splat(x=0, y: 0) end})\n extend(Module.new{def arg_splat_block(x=0, y: 0) end})\n extend(Module.new{def splat_kw_splat(x=0, y: 0) end})\n extend(Module.new{def splat_kw_splat_block(x=0, y: 0) end})\n... | dataset_sample\yaml\ruby_ruby\benchmark\vm_super_splat_calls.yml | vm_super_splat_calls.yml | YAML | 1,018 | 0.85 | 0.48 | 0 | react-lib | 877 | 2023-11-24T00:51:48.762390 | BSD-3-Clause | false | 5721c41a646e0c4709187e69064016a9 |
benchmark:\n vm_thread_alive_check: |\n t = Thread.new{}\n while t.alive?\n Thread.pass\n end\nloop_count: 50_000\n\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_thread_alive_check.yml | vm_thread_alive_check.yml | YAML | 124 | 0.7 | 0.125 | 0 | react-lib | 682 | 2025-01-03T08:13:00.910771 | MIT | false | f2a4db58ba9c086dfc4addf86d99066b |
# while loop cost is not removed due to benchmark_driver.gem's limitation\nbenchmark:\n vm_yield: |\n def m\n i = 0\n while i<30_000_000\n i += 1\n yield\n end\n end\n\n m{}\nloop_count: 1\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_yield.yml | vm_yield.yml | YAML | 216 | 0.95 | 0.230769 | 0.083333 | node-utils | 167 | 2024-11-05T17:40:29.384971 | BSD-3-Clause | false | 9868834be17dd35ee7074d8f6d25d689 |
prelude: |\n class C\n def m a\n 1\n end\n end\n\n class CC < C\n def m a\n super\n end\n end\n\n obj = CC.new\nbenchmark:\n vm_zsuper: |\n obj.m 10\nloop_count: 6000000\n | dataset_sample\yaml\ruby_ruby\benchmark\vm_zsuper.yml | vm_zsuper.yml | YAML | 184 | 0.85 | 0.222222 | 0 | react-lib | 493 | 2024-05-30T09:03:54.919219 | MIT | false | 05d936fa74a68acd1c2b72d61e5c9a7a |
prelude: |\n a = [1].freeze\n ea = [].freeze\n kw = {y: 1}.freeze\n b = lambda{}\n extend(Module.new{def arg_splat(x=0, y: 0) end})\n extend(Module.new{def arg_splat_block(x=0, y: 0) end})\n extend(Module.new{def arg_splat_post(x=0, y: 0) end})\n extend(Module.new{def splat_kw_splat(x=0, y: 0) end})\n extend(M... | dataset_sample\yaml\ruby_ruby\benchmark\vm_zsuper_splat_calls.yml | vm_zsuper_splat_calls.yml | YAML | 1,224 | 0.85 | 0.5 | 0 | python-kit | 137 | 2024-09-06T13:00:23.625811 | GPL-3.0 | false | f5e59e0ba523f4b4270a93924cfe4ddb |
inherit_from: .rubocop_todo.yml\n\nAllCops:\n TargetRubyVersion: 3.1\n DisplayCopNames: true\n Exclude:\n - command_line/fixtures/bad_syntax.rb\n - core/exception/fixtures/syntax_error.rb\n DisabledByDefault: true\n NewCops: disable\n\nLayout/IndentationConsistency:\n Enabled: true\n\nLayout/TrailingWhitesp... | dataset_sample\yaml\ruby_ruby\spec\ruby\.rubocop.yml | .rubocop.yml | YAML | 3,940 | 0.95 | 0.004831 | 0.012821 | react-lib | 492 | 2025-01-24T22:11:23.380903 | GPL-3.0 | false | 79a3cde1899408f4cee19c3a5d35a5c7 |
# This configuration was generated by\n# `rubocop --auto-gen-config`\n# on 2024-10-12 16:01:45 UTC using RuboCop version 1.66.1.\n# The point is for the user to remove these configuration records\n# one by one as the offenses are removed from the code base.\n# Note that changes in the inspected code, or installation of... | dataset_sample\yaml\ruby_ruby\spec\ruby\.rubocop_todo.yml | .rubocop_todo.yml | YAML | 3,367 | 0.95 | 0.016529 | 0.32381 | react-lib | 662 | 2024-12-14T03:37:14.419741 | BSD-3-Clause | false | d9862f65f992b23c394cf3284fe256f2 |
---\n- test/core_ext/name_error_extension_test.rb\n- test/edit_distance/jaro_winkler_test.rb\n- test/fixtures/book.rb\n- test/spell_checker_test.rb\n- test/spell_checking/class_name_check_test.rb\n- test/spell_checking/key_name_check_test.rb\n- test/spell_checking/method_name_check_test.rb\n- test/spell_checking/uncorr... | dataset_sample\yaml\ruby_ruby\test\did_you_mean\fixtures\mini_dir.yml | mini_dir.yml | YAML | 549 | 0.7 | 0 | 0 | python-kit | 563 | 2024-10-16T03:42:57.728336 | BSD-3-Clause | true | 94c3d2af4bb93ee8bfd0c279757c8b90 |
---\n- spec/spec_helper.rb\n- spec/integration/suite_hooks_errors_spec.rb\n- spec/integration/filtering_spec.rb\n- spec/integration/spec_file_load_errors_spec.rb\n- spec/integration/failed_line_detection_spec.rb\n- spec/integration/persistence_failures_spec.rb\n- spec/integration/bisect_runners_spec.rb\n- spec/integrat... | dataset_sample\yaml\ruby_ruby\test\did_you_mean\fixtures\rspec_dir.yml | rspec_dir.yml | YAML | 4,688 | 0.7 | 0 | 0 | awesome-app | 174 | 2024-04-25T10:28:05.334582 | GPL-3.0 | true | ba9d87d46b8f3884c53c632bc01e35bf |
# To use the crowdin-cli, set an access token in CROWDIN_PERSONAL_TOKEN or a ~/.crowdin.yml\n# File structure documentation can be found at: https://developer.crowdin.com/configuration-file/\napi_token_env: CROWDIN_PERSONAL_TOKEN\nproject_id: 582621 # This is https://crowdin.com/project/ruffle\npreserve_hierarchy: true... | dataset_sample\yaml\ruffle-rs_ruffle\crowdin.yml | crowdin.yml | YAML | 1,815 | 0.8 | 0.02381 | 0.171429 | python-kit | 651 | 2023-07-17T01:27:12.408128 | MIT | false | 7944e12a95ef6061617b7cdbd81f6217 |
version: 2\nupdates:\n - package-ecosystem: "npm"\n directory: "/web/"\n versioning-strategy: increase\n schedule:\n interval: "weekly"\n groups:\n npm-minor:\n patterns:\n - "*"\n update-types:\n - "minor"\n - "patch"\n labels:\n - "T-chore"\n ... | dataset_sample\yaml\ruffle-rs_ruffle\.github\dependabot.yml | dependabot.yml | YAML | 1,003 | 0.7 | 0 | 0 | react-lib | 468 | 2025-05-16T22:23:15.358944 | MIT | false | c2b3158bf8db1aeb33115e871c3db47e |
name: "\U0001F41E Bug report"\ndescription: File a bug report.\nlabels: ["bug"]\nbody:\n - type: markdown\n attributes:\n value: |\n - If you have a question about Ruffle, you can ask for help on our [Discord chat][chat].\n - Also consult the [Frequently Asked Questions][faq] for common issues an... | dataset_sample\yaml\ruffle-rs_ruffle\.github\ISSUE_TEMPLATE\bug_report.yml | bug_report.yml | YAML | 2,796 | 0.95 | 0.055556 | 0.014085 | awesome-app | 146 | 2025-03-25T20:55:24.165229 | BSD-3-Clause | false | c71a33621ec6564182d1fb1f98edb328 |
name: "\U0001f4A5 Crash report"\ndescription: File a crash report.\nlabels: ["bug", "panic"]\nbody:\n - type: markdown\n attributes:\n value: |\n - If you have a question about Ruffle, you can ask for help on our [Discord chat][chat].\n - Also consult the [Frequently Asked Questions][faq] for com... | dataset_sample\yaml\ruffle-rs_ruffle\.github\ISSUE_TEMPLATE\crash_report.yml | crash_report.yml | YAML | 2,585 | 0.95 | 0.057971 | 0.014706 | node-utils | 994 | 2023-10-24T18:17:28.022399 | Apache-2.0 | false | 1c71da9d1f73f072d947dcdfc1edd468 |
name: Download translations from Crowdin\n\non:\n schedule:\n - cron: '0 21 * * *'\n workflow_dispatch:\n\njobs:\n crowdin:\n runs-on: ubuntu-24.04\n\n if: github.repository == 'ruffle-rs/ruffle'\n\n strategy:\n max-parallel: 1\n steps:\n - name: Checkout\n uses: actions/checkout@v4\n... | dataset_sample\yaml\ruffle-rs_ruffle\.github\workflows\download_translations.yml | download_translations.yml | YAML | 3,202 | 0.8 | 0.021277 | 0.113924 | vue-tools | 453 | 2025-05-19T18:41:37.953147 | BSD-3-Clause | false | 827d46c41ba18ccedf88f79844f6f222 |
name: Release Nightly\n\non:\n # Run nightly\n schedule:\n - cron: "0 0 * * *"\n\n # Allow for manual dispatch on GitHub\n workflow_dispatch:\n\njobs:\n create-nightly-release:\n name: Create Nightly Release\n runs-on: ubuntu-24.04\n outputs:\n is_active: ${{ steps.activity.outputs.is_active }}\n ... | dataset_sample\yaml\ruffle-rs_ruffle\.github\workflows\release_nightly.yml | release_nightly.yml | YAML | 25,702 | 0.95 | 0.035451 | 0.052901 | react-lib | 111 | 2024-05-08T15:29:36.676111 | BSD-3-Clause | false | 86668a284e82140ae5368a870b3d4649 |
name: Upload source texts to Crowdin\n\non:\n push:\n branches: [ master ]\n workflow_dispatch:\n\njobs:\n crowdin:\n runs-on: ubuntu-24.04\n\n if: github.repository == 'ruffle-rs/ruffle'\n\n strategy:\n max-parallel: 1 # Should be 1 to avoid parallel builds\n steps:\n - name: Checkout\n ... | dataset_sample\yaml\ruffle-rs_ruffle\.github\workflows\upload_texts.yml | upload_texts.yml | YAML | 1,029 | 0.8 | 0.02381 | 0 | awesome-app | 429 | 2023-08-21T13:44:29.602860 | Apache-2.0 | false | b8324b0f89f49eabfb00f2ecf58b90d6 |
env:\n CIRRUS_CLONE_SUBMODULES: true\n CIRRUS_CLONE_DEPTH: 1\n\ntask:\n name: ubuntu-24.04\n only_if: "changesInclude('**.toml', '**.rs', '.gitmodules', '.cirrus.yml', 'get-deps', 'Cargo.lock')"\n container:\n image: ubuntu:24.04\n cpu: 4\n memory: 12G\n stateful: false\n install_rust_script:\n - ech... | dataset_sample\yaml\rust\.cirrus.yml | .cirrus.yml | YAML | 6,171 | 0.8 | 0.015152 | 0 | vue-tools | 788 | 2025-06-20T14:14:58.598898 | BSD-3-Clause | false | 095dac317921ad033bb0af0c03150ef4 |
ignore:\n - "vendor/"\n - "sample_files/"\n\ncoverage:\n range: 40...60\n status:\n patch: off\n project:\n default:\n informational: true\n\n# Don't leave comments on PRs\ncomment: false\n | dataset_sample\yaml\rust\.codecov.yml | .codecov.yml | YAML | 197 | 0.8 | 0 | 0.083333 | node-utils | 901 | 2023-11-30T21:06:25.294447 | BSD-3-Clause | false | 6b42b7cf299a67ca8ea4c4a00b72d4c5 |
# commitlint.config.yml\nextends:\n - "@commitlint/config-conventional"\n\nrules:\n # Basic rules\n header-max-length: [2, "always", 72]\n body-max-line-length: [2, "always", 100]\n\n # Commit type\n type-enum:\n - 2\n - "always"\n - [\n "feat", # New feature\n "enh", # Enhancement of an ex... | dataset_sample\yaml\rust\.commitlintrc.yml | .commitlintrc.yml | YAML | 931 | 0.8 | 0 | 0.107143 | react-lib | 133 | 2023-08-20T08:40:33.537442 | GPL-3.0 | false | 5201cbbe2da9893ab7a4d3f661611d07 |
stages:\n - check\n - build-nightly\n - build\n - publish\n\nvariables:\n # Note: this is deprecated!\n # https://docs.gitlab.com/ee/ci/yaml/#git-strategy\n # However in gitlab web ui it's set to fetch so it should be fine ¯\_(ツ)_/¯\n GIT_STRATEGY: fetch\n # Note: this is deprecated!\n # https://docs.gitlab.c... | dataset_sample\yaml\rust\.gitlab-ci.yml | .gitlab-ci.yml | YAML | 1,590 | 0.8 | 0.09434 | 0.1875 | awesome-app | 96 | 2024-07-30T01:41:41.886942 | GPL-3.0 | false | c2ad06b3a7687169f7ee6b9a38cb6811 |
image:\n file: .gitpod.Dockerfile\n\nvscode:\n extensions:\n - vadimcn.vscode-lldb@1.5.3:vTh/rWhvJ5nQpeAVsD20QA== | dataset_sample\yaml\rust\.gitpod.yml | .gitpod.yml | YAML | 113 | 0.7 | 0 | 0 | vue-tools | 286 | 2023-10-22T16:24:15.046637 | MIT | false | 37bfd5f4dad6425c082291c9ea14de9b |
# Copyright (c) 2017 Intel Corporation\n#\n# SPDX-License-Identifier: Apache-2.0\n\nrun:\n concurrency: 4\n deadline: 600s\n\nissues:\n exclude-dirs:\n - vendor\n exclude-files:\n - ".*\\.pb\\.go$"\n\nlinters:\n disable-all: true\n enable:\n - gocyclo\n - gofmt\n - gosimple\n - govet\n - inef... | dataset_sample\yaml\rust\.golangci.yml | .golangci.yml | YAML | 478 | 0.8 | 0 | 0.1 | awesome-app | 694 | 2023-08-17T12:48:23.418374 | MIT | false | 8ada518914166b3df2d804aca82df92d |
# https://doc.mergify.io/\npull_request_rules:\n - name: label changes from community\n conditions:\n - author≠@core-contributors\n - author≠@monorepo-maintainers\n - author≠@monorepo-write\n - author≠@monorepo-triage\n - author≠mergify[bot]\n - author≠dependabot[bot]\n - author≠g... | dataset_sample\yaml\rust\.mergify.yml | .mergify.yml | YAML | 6,819 | 0.95 | 0.038674 | 0.038889 | vue-tools | 794 | 2025-05-04T08:18:10.104891 | Apache-2.0 | false | a915ebe584ee2346e1ef910c78a52276 |
---\ndisabled_rules:\n - colon\n - comma\n - control_statement\n - identifier_name\n - type_body_length\n - opening_brace # Differs from Google swift guidelines enforced by swiftformat\n - trailing_comma\n - switch_case_alignment # Enables expressions such as [return switch location {}]\n - orphaned_doc_comme... | dataset_sample\yaml\rust\.swiftlint.yml | .swiftlint.yml | YAML | 1,180 | 0.8 | 0.039216 | 0 | python-kit | 42 | 2023-11-01T13:53:00.402855 | BSD-3-Clause | false | 97ccd07775034e82e30cb477ecb0d2d9 |
branches:\n only:\n - master\n - /^v\d+\.\d+/\n\nnotifications:\n email: false\n slack:\n on_success: change\n if: NOT type = pull_request\n secure: F4IjOE05MyaMOdPRL+r8qhs7jBvv4yDM3RmFKE1zNXnfUOqV4X38oQM1EI+YVsgpMQLj/pxnEB7wcTE4Bf86N6moLssEULCpvAuMVoXj4QbWdomLX+01WbFa6fLVeNQIg45NHrz2XzVBhoKOrMNnl+QI5... | dataset_sample\yaml\rust\.travis.yml | .travis.yml | YAML | 3,101 | 0.8 | 0.031915 | 0.081395 | python-kit | 861 | 2024-06-03T15:22:43.947866 | Apache-2.0 | false | 40807eca405460090f04f6147c822edc |
compressionLevel: mixed\nenableGlobalCache: false\nnodeLinker: node-modules\n\nnpmAlwaysAuth: true\nnpmAuthToken: ${NPM_TOKEN-''}\n | dataset_sample\yaml\rust\.yarnrc.yml | .yarnrc.yml | YAML | 125 | 0.7 | 0 | 0 | python-kit | 55 | 2024-06-04T11:46:28.473293 | Apache-2.0 | false | db8c78f052c0e56ae274ec73ec40ed13 |
self-hosted-runner:\n labels:\n - arm64\n - large\n - large-arm64\n - small\n - small-metal\n - small-arm64\n - unit-perf\n - us-east-2\nconfig-variables:\n - AWS_ECR_REGION\n - AZURE_DEV_CLIENT_ID\n - AZURE_DEV_REGISTRY_NAME\n - AZURE_DEV_SUBSCRIPTION_ID\n - AZURE_PROD_CLIENT_ID\n - AZUR... | dataset_sample\yaml\rust\actionlint.yml | actionlint.yml | YAML | 1,074 | 0.7 | 0 | 0 | vue-tools | 612 | 2023-09-14T22:13:13.255959 | BSD-3-Clause | false | f20ebbb03895c2c24774f0fd8250872e |
image: alpine/edge\npackages:\n - cargo\n - clang17-libclang\n - cmake\n - ninja\n - pcre2-dev\n - py3-pexpect\n - python3\n - rust\n - tmux\nsources:\n - https://github.com/fish-shell/fish-shell\ntasks:\n - build: |\n cd fish-shell\n mkdir build\n cd build\n cmake -G Ninj... | dataset_sample\yaml\rust\alpine.yml | alpine.yml | YAML | 570 | 0.8 | 0 | 0 | python-kit | 918 | 2025-02-15T12:46:12.117927 | BSD-3-Clause | false | 7a8eae40b13b3b8fd73ef4221fe6a8da |
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details\nversion: 1\nscript:\n - rm -rf ./AppDir || true\n - bsdtar -zxvf rustdesk.deb\n - tar -xvf ./data.tar.xz\n - mkdir ./AppDir\n - mv ./usr ./AppDir/usr\n # 32x32 icon\n - for i in {32,64,128}; do mkdir -p ./AppDir/usr/share/icons/hicolor/$... | dataset_sample\yaml\rust\AppImageBuilder-aarch64.yml | AppImageBuilder-aarch64.yml | YAML | 4,279 | 0.8 | 0.019802 | 0.039604 | react-lib | 583 | 2025-01-23T16:13:54.895717 | Apache-2.0 | false | c3185c61b5c20c09d59bfcb668046005 |
# appimage-builder recipe see https://appimage-builder.readthedocs.io for details\nversion: 1\nscript:\n - rm -rf ./AppDir || true\n - bsdtar -zxvf rustdesk.deb\n - tar -xvf ./data.tar.xz\n - mkdir ./AppDir\n - mv ./usr ./AppDir/usr\n # 32x32 icon\n - for i in {32,64,128}; do mkdir -p ./AppDir/usr/share/icons/hicolor/$... | dataset_sample\yaml\rust\AppImageBuilder-x86_64.yml | AppImageBuilder-x86_64.yml | YAML | 4,448 | 0.8 | 0.048077 | 0.067308 | react-lib | 694 | 2024-04-13T12:36:12.365416 | Apache-2.0 | false | 6051ada1d63df0a2b3cb50145ff22215 |
image: archlinux\npackages:\n - cmake\n - ninja\n - python\n - python-pexpect\n - tmux\nsources:\n - https://git.sr.ht/~faho/fish\ntasks:\n - build: |\n cd fish\n mkdir build || :\n cd build\n cmake -G Ninja .. \\n -DCMAKE_INSTALL_PREFIX=/usr \\n -DCMAKE_INST... | dataset_sample\yaml\rust\arch.yml | arch.yml | YAML | 489 | 0.8 | 0 | 0 | awesome-app | 654 | 2023-11-11T16:23:30.467774 | GPL-3.0 | false | 9f5e2d7a731b981695969c001506bcc3 |
name: Security audit\n\non:\n schedule:\n - cron: '0 * * * *'\n push:\n branches:\n - master\n\njobs:\n security_audit:\n runs-on: ubuntu-24.04\n steps:\n - uses: actions/checkout@v1\n - uses: actions-rs/audit-check@v1\n with:\n token: ${{ secrets.GITHUB_TOKEN }}\n | dataset_sample\yaml\rust\audit.yml | audit.yml | YAML | 294 | 0.7 | 0 | 0 | vue-tools | 389 | 2023-09-23T06:31:41.902740 | GPL-3.0 | false | f5339e8cbdadd8ff965881afd9e72c23 |
# Update Github actions automatically\n- match:\n dependency_type: production\n update_type: all\n | dataset_sample\yaml\rust\auto-merge.yml | auto-merge.yml | YAML | 100 | 0.8 | 0 | 0.25 | node-utils | 195 | 2023-07-28T02:44:07.381982 | MIT | false | 6f5b1e4e5c009cc5819c2b7e6e578f09 |
#\n# Build steps that run after the primary pipeline on pushes and tags.\n# Pull requests to not run these steps.\nsteps:\n - name: "cargo audit"\n command: "ci/docker-run-default-image.sh ci/do-audit.sh"\n agents:\n queue: "release-build"\n timeout_in_minutes: 10\n - wait\n - name: "publish tarball (x... | dataset_sample\yaml\rust\buildkite-secondary.yml | buildkite-secondary.yml | YAML | 1,397 | 0.8 | 0 | 0.058824 | vue-tools | 706 | 2023-11-17T16:05:15.956329 | Apache-2.0 | false | 2fc2a9724a9d4526fa119d26cfc3de2f |
coverage:\n status:\n project:\n default:\n # https://docs.codecov.com/docs/commit-status#informational\n informational: true\n target: 80%\n patch:\n default:\n informational: true\n target: 80%\ngithub_checks:\n annotations: false\n | dataset_sample\yaml\rust\codecov.yml | codecov.yml | YAML | 276 | 0.8 | 0 | 0.076923 | awesome-app | 553 | 2024-06-04T03:43:50.500108 | BSD-3-Clause | false | 740c51724859f1b7b32ee42838e2a61a |
services:\n postgres:\n image: postgres:15\n container_name: zed_postgres\n ports:\n - 5432:5432\n environment:\n POSTGRES_HOST_AUTH_METHOD: trust\n volumes:\n - postgres_data:/var/lib/postgresql/data\n - ./docker-compose.sql:/docker-entrypoint-initdb.d/init.sql\n\n blob_store:\n ... | dataset_sample\yaml\rust\compose.yml | compose.yml | YAML | 1,552 | 0.8 | 0 | 0 | python-kit | 19 | 2023-11-10T03:54:35.393400 | BSD-3-Clause | false | 826f7f5f9a1bd4639ae145c94267d613 |
version: 1\nvalidation: sovereign\naccounts:\n - name: alice\n coins:\n - 20000token\n - 200000000stake\n - name: bob\n coins:\n - 10000token\n - 100000000stake\nclient:\n openapi:\n path: docs/static/openapi.yml\nfaucet:\n name: bob\n coins:\n - 5token\n - 100000stake\nvalidator... | dataset_sample\yaml\rust\config.yml | config.yml | YAML | 491 | 0.7 | 0 | 0 | vue-tools | 956 | 2025-06-12T15:24:05.567473 | GPL-3.0 | false | 43aa1a0252ff740a16cbfac9ed3d9bf2 |
project_id: '2'\napi_token_env: 'CROWDIN_PERSONAL_TOKEN'\nbase_url: 'https://solana.crowdin.com'\npreserve_hierarchy: true\nfiles: [\n # JSON translation files\n {\n source: '/i18n/en/**/*',\n translation: '/i18n/%two_letters_code%/**/%original_file_name%',\n },\n # Docs Markdown files\n {\n s... | dataset_sample\yaml\rust\crowdin.yml | crowdin.yml | YAML | 797 | 0.8 | 0 | 0.12 | react-lib | 231 | 2025-06-03T16:52:17.591049 | BSD-3-Clause | false | 068a7bb166f5d6d6dd84232fe18da445 |
version: 2\nupdates:\n - package-ecosystem: "github-actions"\n directory: "/"\n schedule:\n interval: "monthly"\n\n # We want to be more sure in our e2e-test, before committing to\n # update all of our dependencies.\n # Only add packages very sporadically here for now.\n - package-ecosystem: "cargo"\n ... | dataset_sample\yaml\rust\dependabot.yml | dependabot.yml | YAML | 730 | 0.8 | 0.034483 | 0.192308 | python-kit | 596 | 2024-01-13T22:33:02.069794 | Apache-2.0 | false | 355a54d5f2fcbd9e882c8939fbaf38cc |
id: do-not-use-logkit-crate\nmessage: Don't use logkit crate with use statement to avoid conflicts with the tracing crate. logkit crate is only used for background job logging to enrich the jobs output in admin UI.\nseverity: error\nlanguage: rust\nfiles:\n- ./**\nrule:\n pattern: use logkit::$$$; | dataset_sample\yaml\rust\do-not-use-logkit-crate.yml | do-not-use-logkit-crate.yml | YAML | 293 | 0.8 | 0.142857 | 0 | node-utils | 515 | 2024-05-18T20:39:07.741071 | BSD-3-Clause | false | 960602b3a90608dd1e11dc155cd0ac3c |
id: do-not-use-next-pages\nmessage: Don't use next pages routing as we're fully commited to app router.\nseverity: error\nlanguage: typescript\nfiles:\n- ./ee/tabby-ui/**\nrule:\n pattern: import $$$ from 'next/router' | dataset_sample\yaml\rust\do-not-use-next-pages.yml | do-not-use-next-pages.yml | YAML | 212 | 0.95 | 0 | 0 | awesome-app | 955 | 2024-08-31T16:44:09.708615 | MIT | false | 1f90d86c4aa8162e2fa3347067f5deb3 |
version: "3.8"\n\nvolumes:\n cargo_cache:\n pg_data:\n router_build_cache:\n scheduler_build_cache:\n drainer_build_cache:\n redisinsight_store:\n\nnetworks:\n router_net:\n\nservices:\n ### Dependencies\n pg:\n image: postgres:latest\n ports:\n - "5432:5432"\n networks:\n - router_net\n ... | dataset_sample\yaml\rust\docker-compose-development.yml | docker-compose-development.yml | YAML | 7,990 | 0.8 | 0.008746 | 0.016234 | python-kit | 389 | 2025-01-03T22:13:17.204164 | Apache-2.0 | false | 8837c8d80f1e346b06e11f74963f468b |
---\nx-image: &image\n image: ${RW_IMAGE:-risingwavelabs/risingwave:v2.3.0}\nservices:\n risingwave-standalone:\n <<: *image\n command: "standalone --meta-opts=\" \\n --listen-addr 0.0.0.0:5690 \\n --advertise-addr 0.0.0.0:5690 \\n --dashboard-host 0.0.0.... | dataset_sample\yaml\rust\docker-compose-with-azblob.yml | docker-compose-with-azblob.yml | YAML | 3,667 | 0.8 | 0 | 0.009434 | awesome-app | 857 | 2024-11-04T15:45:21.460521 | GPL-3.0 | false | 4647301e3933f732e66464b645d6c78b |
---\nx-image: &image\n image: ${RW_IMAGE:-risingwavelabs/risingwave:v2.3.0}\nservices:\n risingwave-standalone:\n <<: *image\n command: "standalone --meta-opts=\" \\n --listen-addr 0.0.0.0:5690 \\n --advertise-addr 0.0.0.0:5690 \\n --dashboard-host 0.0.0.... | dataset_sample\yaml\rust\docker-compose-with-gcs.yml | docker-compose-with-gcs.yml | YAML | 3,661 | 0.8 | 0 | 0.009434 | python-kit | 74 | 2025-02-18T17:22:46.416311 | GPL-3.0 | false | 8071b615028787774a1f8ee8f47eb871 |
---\nservices:\n compactor-0:\n image: ghcr.io/risingwavelabs/risingwave:RisingWave_1.6.1_HDFS_2.7-x86_64\n command:\n - compactor-node\n - "--listen-addr"\n - "0.0.0.0:6660"\n - "--advertise-addr"\n - "compactor-0:6660"\n - "--prometheus-listener-addr"\n - "0.0.0.0:1260"\n ... | dataset_sample\yaml\rust\docker-compose-with-hdfs.yml | docker-compose-with-hdfs.yml | YAML | 7,283 | 0.8 | 0 | 0 | node-utils | 28 | 2024-04-06T10:34:40.284688 | Apache-2.0 | false | 1ccfcc7c863c8fa2389dfb2add407524 |
---\nx-image: &image\n image: ${RW_IMAGE:-risingwavelabs/risingwave:v2.3.0}\nservices:\n risingwave-standalone:\n <<: *image\n command: "standalone --meta-opts=\" \\n --listen-addr 0.0.0.0:5690 \\n --advertise-addr 0.0.0.0:5690 \\n --dashboard-host 0.0.0.... | dataset_sample\yaml\rust\docker-compose-with-local-fs.yml | docker-compose-with-local-fs.yml | YAML | 3,542 | 0.8 | 0 | 0.010101 | node-utils | 103 | 2024-06-13T10:11:59.786870 | MIT | false | 735bea2b2e866f4db88dda360e9f933e |
---\nx-image: &image\n image: ${RW_IMAGE:-risingwavelabs/risingwave:v2.3.0}\nservices:\n risingwave-standalone:\n <<: *image\n command: "standalone --meta-opts=\" \\n --listen-addr 0.0.0.0:5690 \\n --advertise-addr 0.0.0.0:5690 \\n --dashboard-host 0.0.0.... | dataset_sample\yaml\rust\docker-compose-with-obs.yml | docker-compose-with-obs.yml | YAML | 3,661 | 0.8 | 0 | 0.009434 | awesome-app | 120 | 2024-04-04T03:01:07.308527 | GPL-3.0 | false | d567ea8a944d48b7048e0284d3b5b3ad |
---\nx-image: &image\n image: ${RW_IMAGE:-risingwavelabs/risingwave:v2.3.0}\nservices:\n risingwave-standalone:\n <<: *image\n command: "standalone --meta-opts=\" \\n --listen-addr 0.0.0.0:5690 \\n --advertise-addr 0.0.0.0:5690 \\n --dashboard-host 0.0.0.... | dataset_sample\yaml\rust\docker-compose-with-oss.yml | docker-compose-with-oss.yml | YAML | 3,661 | 0.8 | 0 | 0.009434 | vue-tools | 657 | 2024-03-16T12:00:57.530145 | GPL-3.0 | false | f319ad23535a2bb01efbac0a40df8654 |
---\nx-image: &image\n image: ${RW_IMAGE:-risingwavelabs/risingwave:v2.3.0}\nservices:\n risingwave-standalone:\n <<: *image\n command: "standalone --meta-opts=\" \\n --listen-addr 0.0.0.0:5690 \\n --advertise-addr 0.0.0.0:5690 \\n --dashboard-host 0.0.0.... | dataset_sample\yaml\rust\docker-compose-with-s3.yml | docker-compose-with-s3.yml | YAML | 3,640 | 0.8 | 0 | 0.009434 | python-kit | 298 | 2025-07-03T01:42:49.939494 | GPL-3.0 | false | 0d1e91fee3aa0d49d7bc41d37ce90fee |
---\nversion: "2.1"\nservices:\n zellij-e2e:\n image: ghcr.io/linuxserver/openssh-server\n container_name: zellij-e2e\n hostname: zellij-e2e\n environment:\n PUID: 1000\n PGID: 1000\n TZ: Europe/Vienna\n PASSWORD_ACCESS: true\n USER_PASSWORD: test\n USER_NAME: test\n volume... | dataset_sample\yaml\rust\docker-compose.yml | docker-compose.yml | YAML | 539 | 0.7 | 0 | 0 | vue-tools | 407 | 2024-12-30T16:07:17.511618 | Apache-2.0 | false | e8f0e92076e1e09d25d5cb02318ddf29 |
image: freebsd/latest\npackages:\n - cmake\n - gcc\n - gettext\n - gmake\n - llvm\n - terminfo-db\n - ninja\n - pcre2\n - py311-pexpect\n - python\n - rust\n - tmux\nsources:\n - https://github.com/fish-shell/fish-shell\ntasks:\n - build: |\n cd fish-shell\n mkdir build\n cd bui... | dataset_sample\yaml\rust\freebsd.yml | freebsd.yml | YAML | 593 | 0.8 | 0 | 0 | react-lib | 847 | 2025-06-14T01:57:06.530127 | Apache-2.0 | false | 57f3b05eed616f67cfbd009310d4d49f |
# These are supported funding model platforms\n\ngithub: [imsnif]\npatreon: # Replace with a single Patreon username\nopen_collective: # Replace with a single Open Collective username\nko_fi: imsnif\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with ... | dataset_sample\yaml\rust\FUNDING.yml | FUNDING.yml | YAML | 666 | 0.8 | 0 | 0.083333 | node-utils | 5 | 2024-03-15T04:37:19.315992 | MIT | false | 4a49f13e73bfb66c38cf98d7483a4a73 |
# --- THIS FILE IS AUTO GENERATED BY RISEDEV ---\napiVersion: 1\n\nproviders:\n - name: 'risingwave-grafana'\n orgId: 1\n folder: ''\n folderUid: ''\n type: file\n disableDeletion: false\n updateIntervalSeconds: 1\n allowUiUpdates: true\n options:\n path: /dashboards\n foldersFromFile... | dataset_sample\yaml\rust\grafana-risedev-dashboard.yml | grafana-risedev-dashboard.yml | YAML | 324 | 0.8 | 0 | 0.071429 | awesome-app | 962 | 2024-07-29T14:07:20.109227 | Apache-2.0 | false | 09d8f41120a826b5c32fd2f3f8673057 |
# --- THIS FILE IS AUTO GENERATED BY RISEDEV ---\napiVersion: 1\ndeleteDatasources:\n - name: risedev-prometheus\ndatasources:\n - name: risedev-prometheus\n type: prometheus\n access: proxy\n url: http://prometheus-0:9500\n withCredentials: false\n isDefault: true\n tlsAuth: false\n tlsAuthWithC... | dataset_sample\yaml\rust\grafana-risedev-datasource.yml | grafana-risedev-datasource.yml | YAML | 355 | 0.8 | 0 | 0.066667 | awesome-app | 832 | 2025-02-15T19:43:00.000607 | GPL-3.0 | false | d183b631c93669e8ed8a8abd2073901a |
openapi: 3.0.0\ninfo:\n title: Dynamic routing - OpenAPI 3.0\n description: This the the open API 3.0 specification for the dynamic routing.\n version: 1.0.0\npaths:\n /success_rate.SuccessRateCalculator/FetchSuccessRate:\n post:\n summary: Fetch success rate for an entity\n operationId: fetchSuccessRa... | dataset_sample\yaml\rust\hyperswitch_intelligent_router_open_api_spec.yml | hyperswitch_intelligent_router_open_api_spec.yml | YAML | 42,908 | 0.95 | 0.020915 | 0 | react-lib | 21 | 2023-09-26T03:20:59.845070 | BSD-3-Clause | false | 0b7c1788685760d3bd40d8f570a10b5a |
governance:\n type: BDFL\n BDFL: byron\n open for alternatives: yes, as project matures\n\nmaintainers:\n privileges:\n - push directly to 'main' branch\n - reviews or suggestions by other maintainers if PRs are used\n - co-ownership of contributed crates\n - receive sponsorship via GitHub from project ... | dataset_sample\yaml\rust\info.yml | info.yml | YAML | 319 | 0.7 | 0.153846 | 0 | react-lib | 301 | 2023-12-06T01:32:23.406444 | BSD-3-Clause | false | e70595d224ab70bd5f84426e1d6e14a9 |
language: rust\nid: into-only-once\nrule:\n all:\n - kind: call_expression\n - pattern: "$EXPR.into().into()"\nfix: $EXPR.into()\n | dataset_sample\yaml\rust\into-into.yml | into-into.yml | YAML | 140 | 0.7 | 0 | 0 | vue-tools | 311 | 2023-12-28T18:33:31.654749 | BSD-3-Clause | false | d89f705cd876d268f6f12c1afed01452 |
question:\n issues:\n # Post a comment, `{issue-author}` is an optional placeholder\n comment: >\n Hi @{issue-author},\n\n\n Thanks for your question!\n\n\n We want to make sure to keep signal strong in the GitHub issue tracker – to make sure\n that it remains the best place to track is... | dataset_sample\yaml\rust\label-actions.yml | label-actions.yml | YAML | 863 | 0.8 | 0.037037 | 0.117647 | awesome-app | 773 | 2025-02-20T13:26:49.650532 | BSD-3-Clause | false | c3d5b0bac91f3e3cbbca6cd98667f1a4 |
comment:\n header: Hi, there.\n footer: "\\n ---\n\n\\n > This is an automated comment created by the [peaceiris/actions-label-commenter]. \\n Responding to the bot or mentioning it won't have any effect.\n\n\\n [peaceiris/actions-label-commenter]: https://github.com/peaceiris/actions-label-commenter"\n\n... | dataset_sample\yaml\rust\label-commenter-config.yml | label-commenter-config.yml | YAML | 1,149 | 0.95 | 0.181818 | 0.190476 | node-utils | 860 | 2023-09-27T13:01:32.803226 | Apache-2.0 | false | 13792f3a2455fd15775e702fbdd1214b |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.