- Sort Score
- Result 10 results
- Languages All
Results 11 - 14 of 14 for findFirst (0.23 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java
.filter(p -> artifact.equals(p.getArtifact())) .map(MavenProject::getRemoteArtifactRepositories) .findFirst() .orElseGet(() -> getRepositoriesFromModel(repositorySession, model)); } else { pomRepositories = getRepositoriesFromModel(repositorySession, model);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 30.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/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 Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 16 09:39:51 UTC 2025 - 113.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java
private final long maxItems; /** * Constructs a Trans2FindNext2 request for continuing a file search. * * @param config the configuration to use * @param sid the search ID from a previous FindFirst2 response * @param resumeKey the resume key for continuing the search * @param filename the last filename from the previous response * @param batchCount the number of entries to return
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans2/Trans2FindFirst2Response.java
import jcifs.internal.fscc.FileBothDirectoryInfo; import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.smb1.trans.SmbComTransactionResponse; import jcifs.internal.util.SMBUtil; /** * Trans2 FindFirst2 response message for SMB1 directory enumeration. * This class handles the response from a TRANS2_FIND_FIRST2 request, which returns * the first set of directory entries matching the specified search criteria. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.2K bytes - Viewed (0)