- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 939 for session (0.37 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
@Nonnull static ModelBuilderRequest build(@Nonnull Session session, @Nonnull ModelSource source) { return builder() .session(requireNonNull(session, "session cannot be null")) .source(requireNonNull(source, "source cannot be null")) .build(); } @Nonnull static ModelBuilderRequest build(@Nonnull Session session, @Nonnull Path path) { return builder()Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:30:49 UTC 2025 - 16.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java
} public void buildProject( MavenSession session, ReactorContext reactorContext, MavenProject currentProject, TaskSegment taskSegment) { buildProject(session, session, reactorContext, currentProject, taskSegment); } public void buildProject( MavenSession session, MavenSession rootSession, ReactorContext reactorContext,Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
* * @author mbechler * */ public class Smb2SessionSetupResponse extends ServerMessageBlock2Response { /** * Session flag indicating this is a guest session */ public static final int SMB2_SESSION_FLAGS_IS_GUEST = 0x1; /** * Session flag indicating this is a null/anonymous session */ public static final int SMB2_SESSION_FLAGS_IS_NULL = 0x2;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt
// Force reuse. This appears flaky (30% of the time) even though sessions are reused. // javax.net.ssl.SSLHandshakeException: No new session is allowed and no existing // session can be resumed // // Report https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8264944 // Sessions improvement https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8245576Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Nov 01 12:18:11 UTC 2025 - 5.9K bytes - Viewed (1) -
impl/maven-core/src/main/java/org/apache/maven/plugin/prefix/DefaultPluginPrefixRequest.java
* @param session The build session from which to derive further settings, must not be {@code null}. */ public DefaultPluginPrefixRequest(String prefix, MavenSession session) { setPrefix(prefix); setRepositorySession(session.getRepositorySession()); MavenProject project = session.getCurrentProject(); if (project != null) {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlFilterService.java
* * @param sessionId the ID of the session for which the URLs should be excluded * @param urlList the list of URLs to be excluded */ void addExcludeUrlFilter(String sessionId, List<String> urlList); /** * Deletes the URL filter associated with the specified session ID. * * @param sessionId the ID of the session whose URL filter is to be deleted */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
PreauthIntegrityContext context = sessionContexts.get(sessionId); if (context == null) { if (enforceIntegrity) { throw new CIFSException("No preauth integrity context found for session: " + sessionId); } log.warn("No preauth integrity context for session {}, skipping validation", sessionId);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
* * @param sessionId The session ID. */ @Override public void delete(final String sessionId) { deleteBySessionId(sessionId); } /** * Offers multiple URL queue entries for the specified session. * Only URLs that don't already exist will be added. * * @param sessionId The session ID.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:40:57 UTC 2025 - 16.9K bytes - Viewed (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolver.java
default ArtifactResolverResult resolve(Session session, Collection<? extends ArtifactCoordinates> coordinates) { return resolve(ArtifactResolverRequest.build(session, coordinates)); } /** * Resolves several artifacts from their coordinates. * * @param session {@link Session} * @param repositories the list of remote repositories or {@code null} to use the session repositories
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 12 06:19:14 UTC 2024 - 3.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
@Nonnull Session session, @Nonnull String type) throws ToolchainManagerException { return getDelegate().getToolchainFromBuildContext(session, type); } @Override public void storeToolchainToBuildContext( @Nonnull Session session, @Nonnull org.apache.maven.api.Toolchain toolchain) { getDelegate().storeToolchainToBuildContext(session, toolchain); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 31 10:58:52 UTC 2025 - 11K bytes - Viewed (0)