mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
Conver to regular Go vendor + dep tool
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
foo
|
||||
+1
@@ -0,0 +1 @@
|
||||
foo.bar
|
||||
+1
@@ -0,0 +1 @@
|
||||
ends_with(str, 'SStr')
|
||||
+1
@@ -0,0 +1 @@
|
||||
ends_with(str, 'foo')
|
||||
+1
@@ -0,0 +1 @@
|
||||
floor(`1.2`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
floor(decimals[0])
|
||||
+1
@@ -0,0 +1 @@
|
||||
floor(foo)
|
||||
+1
@@ -0,0 +1 @@
|
||||
length('abc')
|
||||
+1
@@ -0,0 +1 @@
|
||||
length('')
|
||||
+1
@@ -0,0 +1 @@
|
||||
length(@)
|
||||
+1
@@ -0,0 +1 @@
|
||||
length(strings[0])
|
||||
+1
@@ -0,0 +1 @@
|
||||
length(str)
|
||||
+1
@@ -0,0 +1 @@
|
||||
length(array)
|
||||
+1
@@ -0,0 +1 @@
|
||||
length(strings[0])
|
||||
+1
@@ -0,0 +1 @@
|
||||
max(strings)
|
||||
+1
@@ -0,0 +1 @@
|
||||
merge(`{}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
merge(`{}`, `{}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
two
|
||||
+1
@@ -0,0 +1 @@
|
||||
merge(`{"a": 1}`, `{"b": 2}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
merge(`{"a": 1}`, `{"a": 2}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
merge(`{"a": 1, "b": 2}`, `{"a": 2, "c": 3}`, `{"d": 4}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
min(numbers)
|
||||
+1
@@ -0,0 +1 @@
|
||||
min(decimals)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type('abc')
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`1.0`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
three
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`2`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`true`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`false`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`null`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`[0]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(`{"a": "b"}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
type(@)
|
||||
+1
@@ -0,0 +1 @@
|
||||
keys(objects)
|
||||
+1
@@ -0,0 +1 @@
|
||||
values(objects)
|
||||
+1
@@ -0,0 +1 @@
|
||||
keys(empty_hash)
|
||||
+1
@@ -0,0 +1 @@
|
||||
one.two
|
||||
+1
@@ -0,0 +1 @@
|
||||
join(', ', strings)
|
||||
+1
@@ -0,0 +1 @@
|
||||
join(', ', strings)
|
||||
+1
@@ -0,0 +1 @@
|
||||
join(',', `["a", "b"]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
join('|', strings)
|
||||
+1
@@ -0,0 +1 @@
|
||||
join('|', decimals[].to_string(@))
|
||||
+1
@@ -0,0 +1 @@
|
||||
join('|', empty_list)
|
||||
+1
@@ -0,0 +1 @@
|
||||
reverse(numbers)
|
||||
+1
@@ -0,0 +1 @@
|
||||
reverse(array)
|
||||
+1
@@ -0,0 +1 @@
|
||||
reverse(`[]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
reverse('')
|
||||
+1
@@ -0,0 +1 @@
|
||||
foo."1"
|
||||
+1
@@ -0,0 +1 @@
|
||||
reverse('hello world')
|
||||
+1
@@ -0,0 +1 @@
|
||||
starts_with(str, 'S')
|
||||
+1
@@ -0,0 +1 @@
|
||||
starts_with(str, 'St')
|
||||
+1
@@ -0,0 +1 @@
|
||||
starts_with(str, 'Str')
|
||||
+1
@@ -0,0 +1 @@
|
||||
sum(numbers)
|
||||
+1
@@ -0,0 +1 @@
|
||||
sum(decimals)
|
||||
+1
@@ -0,0 +1 @@
|
||||
sum(array[].to_number(@))
|
||||
+1
@@ -0,0 +1 @@
|
||||
sum(`[]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_array('foo')
|
||||
+1
@@ -0,0 +1 @@
|
||||
foo."1"[0]
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_array(`0`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_array(objects)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_array(`[1, 2, 3]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_array(false)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_string('foo')
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_string(`1.2`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_string(`[0, 1]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number('1.0')
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number('1.1')
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number('4')
|
||||
+1
@@ -0,0 +1 @@
|
||||
foo."-1"
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number('notanumber')
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number(`false`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number(`null`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number(`[0]`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
to_number(`{"foo": 0}`)
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort(numbers)
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort(empty_list)
|
||||
+1
@@ -0,0 +1 @@
|
||||
not_null(unknown_key, str)
|
||||
+1
@@ -0,0 +1 @@
|
||||
@
|
||||
+1
@@ -0,0 +1 @@
|
||||
not_null(unknown_key, foo.bar, empty_list, str)
|
||||
+1
@@ -0,0 +1 @@
|
||||
not_null(unknown_key, null_key, empty_list, str)
|
||||
+1
@@ -0,0 +1 @@
|
||||
not_null(all, expressions, are_null)
|
||||
+1
@@ -0,0 +1 @@
|
||||
numbers[].to_string(@)
|
||||
+1
@@ -0,0 +1 @@
|
||||
array[].to_number(@)
|
||||
+1
@@ -0,0 +1 @@
|
||||
foo[].not_null(f, e, d, c, b, a)
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort_by(people, &age)
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort_by(people, &to_number(age_str))
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort_by(people, &age)[].name
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort_by(people, &age)[].extra
|
||||
+1
@@ -0,0 +1 @@
|
||||
@.bar
|
||||
+1
@@ -0,0 +1 @@
|
||||
sort_by(`[]`, &age)
|
||||
+1
@@ -0,0 +1 @@
|
||||
max_by(people, &age)
|
||||
+1
@@ -0,0 +1 @@
|
||||
max_by(people, &age_str)
|
||||
+1
@@ -0,0 +1 @@
|
||||
max_by(people, &to_number(age_str))
|
||||
+1
@@ -0,0 +1 @@
|
||||
min_by(people, &age)
|
||||
+1
@@ -0,0 +1 @@
|
||||
min_by(people, &age_str)
|
||||
+1
@@ -0,0 +1 @@
|
||||
min_by(people, &to_number(age_str))
|
||||
+1
@@ -0,0 +1 @@
|
||||
__L
|
||||
+1
@@ -0,0 +1 @@
|
||||
"!\r"
|
||||
+1
@@ -0,0 +1 @@
|
||||
foo.bar
|
||||
+1
@@ -0,0 +1 @@
|
||||
@.foo[0]
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user