Java Code Examples for java.time.Duration#plusMillis()
The following examples show how to use
java.time.Duration#plusMillis() .
These examples are extracted from open source projects.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source Project: openjdk-8 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_minusOneLess(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds - 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds - 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 2
Source Project: dragonwell8_jdk File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_oneMore(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds + 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds + 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 3
Source Project: openjdk-jdk9 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_minusOneLess(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds - 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds - 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 4
Source Project: dragonwell8_jdk File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test public void plusMillis_long_max() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 998999999); t = t.plusMillis(1); assertEquals(t.getSeconds(), Long.MAX_VALUE); assertEquals(t.getNano(), 999999999); }
Example 5
Source Project: openjdk-8 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test public void plusMillis_long_min() { Duration t = Duration.ofSeconds(Long.MIN_VALUE, 1000000); t = t.plusMillis(-1); assertEquals(t.getSeconds(), Long.MIN_VALUE); assertEquals(t.getNano(), 0); }
Example 6
Source Project: openjdk-8-source File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test public void plusMillis_long_max() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 998999999); t = t.plusMillis(1); assertEquals(t.getSeconds(), Long.MAX_VALUE); assertEquals(t.getNano(), 999999999); }
Example 7
Source Project: openjdk-jdk8u-backup File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_minusOneLess(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds - 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds - 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 8
Source Project: openjdk-jdk9 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_oneMore(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds + 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds + 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 9
Source Project: jdk8u-dev-jdk File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test public void plusMillis_long_max() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 998999999); t = t.plusMillis(1); assertEquals(t.getSeconds(), Long.MAX_VALUE); assertEquals(t.getNano(), 999999999); }
Example 10
Source Project: openjdk-8-source File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_minusOneLess(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds - 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds - 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 11
Source Project: openjdk-8 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 12
Source Project: cloudbreak File: StackUtil.java License: Apache License 2.0 | 5 votes |
public long getUptimeForCluster(Cluster cluster, boolean addUpsinceToUptime) { Duration uptime = Duration.ZERO; if (StringUtils.isNotBlank(cluster.getUptime())) { uptime = Duration.parse(cluster.getUptime()); } if (cluster.getUpSince() != null && addUpsinceToUptime) { long now = new Date().getTime(); uptime = uptime.plusMillis(now - cluster.getUpSince()); } return uptime.toMillis(); }
Example 13
Source Project: openjdk-jdk9 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test public void plusMillis_long_max() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 998999999); t = t.plusMillis(1); assertEquals(t.getSeconds(), Long.MAX_VALUE); assertEquals(t.getNano(), 999999999); }
Example 14
Source Project: openjdk-jdk9 File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 15
Source Project: openjdk-jdk8u-backup File: TCKDuration.java License: GNU General Public License v2.0 | 5 votes |
@Test(dataProvider="PlusMillis") public void plusMillis_long_oneMore(long seconds, int nanos, long amount, long expectedSeconds, int expectedNanoOfSecond) { Duration t = Duration.ofSeconds(seconds + 1, nanos); t = t.plusMillis(amount); assertEquals(t.getSeconds(), expectedSeconds + 1); assertEquals(t.getNano(), expectedNanoOfSecond); }
Example 16
Source Project: hottub File: TCKDuration.java License: GNU General Public License v2.0 | 4 votes |
@Test(expectedExceptions = {ArithmeticException.class}) public void plusMillis_long_overflowTooBig() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 999000000); t.plusMillis(1); }
Example 17
Source Project: jdk8u-jdk File: TCKDuration.java License: GNU General Public License v2.0 | 4 votes |
@Test(expectedExceptions = {ArithmeticException.class}) public void plusMillis_long_overflowTooSmall() { Duration t = Duration.ofSeconds(Long.MIN_VALUE, 0); t.plusMillis(-1); }
Example 18
Source Project: jdk8u-dev-jdk File: TCKDuration.java License: GNU General Public License v2.0 | 4 votes |
@Test(expectedExceptions = {ArithmeticException.class}) public void plusMillis_long_overflowTooBig() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 999000000); t.plusMillis(1); }
Example 19
Source Project: jdk8u-jdk File: TCKDuration.java License: GNU General Public License v2.0 | 4 votes |
@Test(expectedExceptions = {ArithmeticException.class}) public void plusMillis_long_overflowTooBig() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 999000000); t.plusMillis(1); }
Example 20
Source Project: openjdk-8 File: TCKDuration.java License: GNU General Public License v2.0 | 4 votes |
@Test(expectedExceptions = {ArithmeticException.class}) public void plusMillis_long_overflowTooBig() { Duration t = Duration.ofSeconds(Long.MAX_VALUE, 999000000); t.plusMillis(1); }