- Sort Score
- Result 10 results
- Languages All
Results 11 - 12 of 12 for orElseThrow (0.06 sec)
-
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
MavenProject rootProject = session.getAllProjects().stream() .filter(MavenProject::isExecutionRoot) .findFirst() .orElseThrow(() -> new IllegalStateException("No project in the session is execution root")); buildResumptionAnalyzer.determineBuildResumptionData(result).ifPresent(resumption -> { try {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (1) -
okhttp/src/test/java/okhttp3/CacheTest.kt
assertThat(response1.body.string()).isEqualTo("ABC") val cacheEntry = fileSystem.allPaths.stream() .filter { e: Path -> e.name.endsWith(".0") } .findFirst() .orElseThrow { NoSuchElementException() } corruptCertificate(cacheEntry) val response2 = client.newCall(request).execute() // Not Cached! assertThat(response2.body.string()).isEqualTo("DEF")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 10 19:46:48 UTC 2024 - 108.6K bytes - Viewed (0)