Yes, it really can be. Math.random() creates a global java.util.Random-generator with seed (System.currentTimeMillis() ^ 0x5DEECE66DL) & ((1L << 48) - 1) and calls nextDouble() for it. If its seed reaches state 107048004364969L(and it will, since java.util.Random has full period), the next double generated will be 0.0.
Though with bad luck you could end up with the wrong parity in the cycle, because
Random.nextDouble() advances the state twice. With little less bad luck you could have to generate 2^47 random numbers before the loop terminates, as I didn't find any other seeds that give 0.0.
The seed advances as if by seed = (seed * 0x5DEECE66DL + 0xBL) & ((1L << 48) - 1);
and doubles are generated using 26 and 27 upper bits of two consecutive seed values. In the example the two next seed values will be 0L and 11L.
If you manage to create the global generator with System.currentTimeMillis()==107038380838084L, your code returns immediately. You can simulate this with:
java.util.Random k = new java.util.Random(107038380838084L);
System.out.println(k.nextDouble()==0);
doublewith 53 uniformly-distributed pseudo-random bits in its mantissa. – Јοеу Jun 17 '10 at 23:31