There is a big chance that, when "use less" is finally implemented, might be in Perl 6, it will be called "use optimize", which makes more sense.
This example:
"use less CPU => 40, memory => '30M';"
does not fit very well with the original purpose of having "use less" or "use optimize".
The root purpose of "use optimize" or "use less" is to allow Perl to make speed/memory trade off at either run time or compile time (details would be determined by the implementation). If you say "use optimize CPU", Perl would try to use more memory if that speeds up your script; or the other way around, if you specify "use optimize memory". (Be aware that, up till now, Perl usually trade memory for speed)
To specify the number amount is "a little bit" less meaningful in the real world ;-). For example, what does "use less memory => 30M" really mean? if your program is deemed to use 35M, what should Perl do? Especially if you specify both less memory and less CPU, (with or without number amount attached), Perl would be put into a dilemma, and does not know what to do.