- Sort Score
- Result 10 results
- Languages All
Results 61 - 63 of 63 for get_session (0.04 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/DefaultLegacyArtifactCollector.java
@Inject private Logger logger; @Inject private LegacySupport legacySupport; private void injectSession(ArtifactResolutionRequest request) { MavenSession session = legacySupport.getSession(); if (session != null) { request.setOffline(session.isOffline()); request.setForceUpdate(session.getRequest().isUpdateSnapshots());
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 36.5K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
} } ``` ### 5.3 File Handle Integration ```java // In SmbFile.java @Override protected void handleConnectionLoss(IOException error) { if (tree.getSession().isWitnessEnabled()) { log.info("Connection lost, waiting for witness notification before retry"); // Wait briefly for witness notification before retrying try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
req.setShareAccess(sharing); req.setFileAttributes(attrs); // Add SMB3 features support with error handling for compatibility SmbSessionImpl session = h.getSession(); // Enable lease support if available, with fallback for compatibility boolean leasesAdded = false; if (config.isUseLeases() && h.isSMB3()) { try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0)