Create a list with $n elements, each initialized to undef. Then assign $v to each element.
my @x = ($v) x $n;
This defines a new list (@x) and sets $n elements of it to $v. The list grows to length $n. The x operator in this context repeats the left operand $n times.