- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for setSession (1.13 sec)
-
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
? parentData.getGroupId() : currentData.getRawModel().getGroupId()); currentData.setVersion( currentData.getRawModel().getVersion() == null ? parentData.getVersion() : currentData.getRawModel().getVersion());
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
if (getModel().getName() != null) { return getModel().getName(); } else { return getArtifactId(); } } public void setVersion(String version) { getModel().setVersion(version); } public String getVersion() { String version = getModel().getVersion(); if ((version == null) && (getModel().getParent() != null)) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug("Logging in with Entra ID Authenticator"); } final HttpSession session = request.getSession(false); if (session != null && containsAuthenticationData(request)) { try { return processAuthenticationData(request); } catch (final Exception e) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 56.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
updateHighlightInfo(highlightInfo, width); final HttpSession session = req.getSession(false); if (session != null) { session.setAttribute(SCREEN_WIDTH, width); } } else { final HttpSession session = req.getSession(false); if (session != null) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 52.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
} private DependencyResolutionResult resolveDependencies(MavenProject project) { DependencyResolutionResult resolutionResult; RepositorySystemSession session = this.session.getSession(); try { DefaultDependencyResolutionRequest resolution = new DefaultDependencyResolutionRequest(project, session);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 17:20:31 UTC 2025 - 51.8K bytes - Viewed (0)